Created
August 16, 2016 02:54
-
-
Save alexdeborba/82b2c893ec02f8e57cd14d798c829c51 to your computer and use it in GitHub Desktop.
This file contains hidden or 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','custom_wp_mail_from'); | |
function custom_wp_mail_from($email) { | |
return '[email protected]'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment