How can I turn off email notifications for the user and admin when a new user is registered?
I’ve seen a few suggestions and plugins but none appear to work. One was to take the function from one of the plugins:
if ( !function_exists('wp_new_user_notification') ) :
/**
* Notify the blog admin of a new user, normally via email.
*
* @since 2.0
*
* @param int $user_id User ID
* @param string $plaintext_pass Optional. The user's plaintext password
*/
function wp_new_user_notification($user_id, $plaintext_pass = '') {
$user = new WP_User($user_id);
$user_login = stripslashes($user->user_login);
$user_email = stripslashes($user->user_email);
// The blogname option is escaped with esc_html on the way into the database in sanitize_option
// we want to reverse this for the plain text arena of emails.
$blogname = wp_specialchars_decode(get_option('blogname'), ENT_QUOTES);
$message = sprintf(__('New user registration on your site %s:'), $blogname) . "rnrn";
$message .= sprintf(__('Username: %s'), $user_login) . "rnrn";
$message .= sprintf(__('E-mail: %s'), $user_email) . "rn";
@wp_mail(get_option('admin_email'), sprintf(__('[%s] New User Registration'), $blogname), $message);
if ( empty($plaintext_pass) )
return;
$message = sprintf(__('Username: %s'), $user_login) . "rn";
$message .= sprintf(__('Password: %s'), $plaintext_pass) . "rn";
$message .= wp_login_url() . "rn";
// wp_mail($user_email, sprintf(__('[%s] Your username and password'), $blogname), $message)
}
endif;
The questions and suggestions were quite old so maybe WP 3.5 over rides something.
On signup I’m still getting the admin email and an email to the user.
I don’t want to block the forgotten password email though.
Function
wp_new_user_notification
is pluggable. It means that you can override it by declaring your version of this function in your plugin/theme.So, if you wish to disable all notifications completely, do it like this:
However I wouldn’t recommend you to disable all notifications, and would recommend you to send notification to an user at least (How does an user find out his password?). So in this case your code should be following:
According to this page it would suffice to use this code (to disable all notifications completely):
It’s pretty close to the given answer, but a little shorter. I thought of sharing this for what it’s worth.
As of 4.6 there is a parameter to disable admin notifications.
https://developer.wordpress.org/reference/functions/wp_new_user_notification/
$notify
parameter accepts ‘user’ for sending notification only to the user created.*/
Had to do this today, and found many of these solutions seem pretty outdated. This looks to be a better way without overwriting pluggable functions. This isn’t my exact code but should be a good reference.