Disable WordPress Password Change Email
Disable the email notification if a user or an admin changes the password of a user.
function disable_password_change_email( $send, $user, $userdata ) { return false; } add_filter( 'send_password_change_email', 'disable_password_change_email' );