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