Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mcgregormedia/ea951bcc8314fd8ee250 to your computer and use it in GitHub Desktop.
Save mcgregormedia/ea951bcc8314fd8ee250 to your computer and use it in GitHub Desktop.
function new_mail_from( $old ) {
return 'your.name@your-domain.co.uk';
}
function new_mail_from_name( $old ) {
return 'Your Name';
}
add_filter('wp_mail_from', 'new_mail_from');
add_filter('wp_mail_from_name', 'new_mail_from_name');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment