Created
May 14, 2020 19:05
-
-
Save someguy9/b24866f521ec3eb20b13feb4c72a6afd to your computer and use it in GitHub Desktop.
Revisions
-
someguy9 revised this gist
May 14, 2020 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -13,7 +13,7 @@ function smartwp_send_new_user_notifications( $user_id, $notify = 'user' ) { if ( empty($notify) || $notify == 'admin' ) { return; }elseif( $notify == 'both' ){ //Only send the new user their email, not the admin $notify = 'user'; } wp_send_new_user_notifications( $user_id, $notify ); -
someguy9 created this gist
May 14, 2020 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,21 @@ <?php //Disable the new user notification sent to the site admin function smartwp_disable_new_user_notifications() { //Remove original use created emails remove_action( 'register_new_user', 'wp_send_new_user_notifications' ); remove_action( 'edit_user_created_user', 'wp_send_new_user_notifications', 10, 2 ); //Add new function to take over email creation add_action( 'register_new_user', 'smartwp_send_new_user_notifications' ); add_action( 'edit_user_created_user', 'smartwp_send_new_user_notifications', 10, 2 ); } function smartwp_send_new_user_notifications( $user_id, $notify = 'user' ) { if ( empty($notify) || $notify == 'admin' ) { return; }elseif( $notify == 'both' ){ //Only send the new user their email, not the admin $notify = 'user'; } wp_send_new_user_notifications( $user_id, $notify ); } add_action( 'init', 'smartwp_disable_new_user_notifications' );