// Disable WordPress new user notification emails add_filter( 'wp_send_new_user_notifications', 'disable_wp_new_user_emails', 10, 2 ); function disable_wp_new_user_emails( $send, $user ) { return false; // Block both admin and user default emails }
Skip to content