Last active
June 3, 2016 15:03
-
-
Save MaxySpark/f4946575de1e7af3a6ab557d389946bd to your computer and use it in GitHub Desktop.
Its a bit of odd isn’t? Do you have any email address created as [email protected]? or Is this email [email protected] really exists? Well, we can change up these names and email address easily using the following snippet. Simply add this code on your themes functions.php Don’t forget to change the name and email address in this …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter( 'wp_mail_from', 'wp4_new_mail_from' ); | |
function wp4_new_mail_from( $old ) { | |
return '[email protected]'; // Edit it with your official email address | |
} | |
add_filter('wp_mail_from_name', 'wp4_new_mail_from_name'); | |
function wp4_new_mail_from_name( $old ) { | |
return 'Webmaster'; // Edit it with your official name | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment