Created
February 18, 2013 15:30
-
-
Save WebEndevSnippets/4978217 to your computer and use it in GitHub Desktop.
WordPress: Change Default WP Email 'From Name'(instead of from WordPress)
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_name', 'webendev_change_default_wp_email_name' ); | |
/** | |
* Change Default WP Email 'From Name'(instead of from WordPress) | |
* | |
*/ | |
function webendev_change_default_wp_email_name(){ | |
return 'My Real Name'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment