How to disable wordpress confirmation email for new users

I noticed the current answers are plugin based only.

You can use wpmu_signup_user_notification to achieve this without installing a plugin.

Add to your functions.php – this will disable user signup notifcations completely.

add_filter( 'wpmu_signup_user_notification', '__return_false' );

You can read more wpmu_signup_user_notification here:

https://developer.wordpress.org/reference/functions/wpmu_signup_user_notification/

Leave a Comment