Last active
August 29, 2015 14:04
-
-
Save Tmeister/c483e2947a14e0124b08 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
<?php | |
function ec_mail_name( $email ){ | |
return 'Joe Doe'; // new email name from sender. | |
} | |
add_filter( 'wp_mail_from_name', 'ec_mail_name' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment