我不知道是否有什么变化,但我无法禁用发送到WordPress管理邮件的电子邮件。我尝试将此代码添加到我的主题functions.php 文件
//disable default WordPress new user notification emails
if (!function_exists(\'wp_new_user_notification\')) {
function wp_new_user_notification( $user_id, $deprecated = null, $notify = \'\' ) {
return;
}
}
并尝试启用
http://wordpress.org/extend/plugins/disable-new-user-email-notifications/ 插件。但是邮件一直被发送给管理员。