If you want to disable the email notifications for password changes of users on your WordPress site, just insert this piece of code into your theme’s functions.php file or create a custom functionality plugin and insert this code in there:
if ( !function_exists( 'wp_password_change_notification' ) ) { function wp_password_change_notification() {} }
3 Responses
In snippets plugin i get: Cannot redeclare function wp_password_change_notification.
It can not work because WP load pluggable.php BEFORE your function.php.
So you need to creat a plugin whith those 2 lines and it will works.
this not work for me