Skip to content

Instantly share code, notes, and snippets.

@WebEndevSnippets
Created February 18, 2013 15:30
Show Gist options
  • Save WebEndevSnippets/4978221 to your computer and use it in GitHub Desktop.
Save WebEndevSnippets/4978221 to your computer and use it in GitHub Desktop.
WordPress: Change Default WP Email Address (instead of from [email protected])
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