How can I disable the "New User Registration" emails send to the email address in General Options when a new user registers?
How can I disable the "New User Registration" emails send to the email address in General Options when a new user registers?
From this thread, it seems this can be accomplished by adding the defining the following within a plugin:
function wp_new_user_notification($user_id, $plaintext_pass = '') {
}
Which then disable the wp_new_user_notification() function.
This topic has been closed to new replies.