/ Published in: PHP
URL: rainydaymedia.net
Add to the bottom of the your theme's function.php file. Change to your site's name
Expand |
Embed | Plain Text
add_filter('wp_mail_from', 'new_mail_from'); add_filter('wp_mail_from_name', 'new_mail_from_name'); function new_mail_from($old) { return '[email protected]'; } function new_mail_from_name($old) { return 'Your Blog Name'; }
You need to login to post a comment.
