Skip to content

Instantly share code, notes, and snippets.

@ciaranmg
Last active September 28, 2015 20:01
Show Gist options
  • Save ciaranmg/8b7ccd48b78b49e37959 to your computer and use it in GitHub Desktop.
Save ciaranmg/8b7ccd48b78b49e37959 to your computer and use it in GitHub Desktop.
Fixing Wordpress Change Password Email
<?php
add_action('send_password_change_email', 'no_email_update');
function no_email_update(){
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment