Disable password change notification to admin
Disables the password reset notification emails that go to the site admin.
add_filter( 'wp_password_change_notification_email', function( $args ) {
// Skip For Site Admin Only
if( $args['to'] == get_bloginfo( 'admin_email' ) ) {
$args['to'] = '';
}
// Return
return $args;
} );PHP