Skip to content

Instantly share code, notes, and snippets.

@luiseduardobraschi
Last active March 19, 2019 04:00
Show Gist options
  • Save luiseduardobraschi/6c77d81709b7f640e670489f4dcced33 to your computer and use it in GitHub Desktop.
Save luiseduardobraschi/6c77d81709b7f640e670489f4dcced33 to your computer and use it in GitHub Desktop.
Change new user notification e-mail body.
<?php
add_filter( 'wp_new_user_notification_email', 'gist_change_new_user_message', 10, 3 );
function gist_change_new_user_message( $wp_new_user_notification_email, $user, $blogname ){
$wp_new_user_notification_email['message'] = "This is the new mail body.\r\n\r\n"";
return $wp_new_user_notification_email;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment