如果目的只是為了禁用添加新用户的郵件通知,把下面的代碼添加到主題或子主題的 function.php 底部,然後保存即可:
// To Disable Default Notification to Admin from New User Registration
remove_action( 『register_new_user』, 『wp_send_new_user_notifications』 );
remove_action( 『edit_user_created_user』, 『wp_send_new_user_notifications』, 10 );
add_action( 『register_new_user』, 『mytheme_wp_send_new_user_notifications』, 10, 2 );
add_action( 『edit_user_created_user』, 『mytheme_wp_send_new_user_notifications』, 10, 2 );
function mytheme_wp_send_new_user_notifications( $user_id, $notify = 『user』 ) {
switch($notify) {
case 『admin』:
$notify = 『none』;
break;
case 『both』:
$notify = 『user』;
break;
}
wp_new_user_notification($user_id, null, $notify);
}
其他的先試試看吧,可以付費處理的,