Advertisement
lorro

WordPress - Change password change email

Feb 3rd, 2017
627
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.46 KB | None | 0 0
  1. <?php
  2. // WordPress - Change the password change email
  3. // code goes in functions.php for your child theme
  4. add_filter ('password_change_email', 'custom_password_change_email');
  5. function custom_password_change_email( $pass_change_email ) {
  6.   $pass_change_text = $pass_change_email['message'];
  7.   $pass_change_text = str_replace( 'Hi ###USERNAME###', 'Dear Customer', $pass_change_text );
  8.   $pass_change_email['message'] = $pass_change_text;
  9.   return $pass_change_email;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement