Last active
January 6, 2023 14:18
-
-
Save jentanbernardus/6008910 to your computer and use it in GitHub Desktop.
WordPress: Disable new user and password change notification
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 characters
<?php | |
if ( !function_exists('wp_new_user_notification') ) { | |
function wp_new_user_notification( ) {} | |
} | |
if ( !function_exists( 'wp_password_change_notification' ) ) { | |
function wp_password_change_notification() {} | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment