View difference between Paste ID: Kmxjrfd9 and N6EN06T0
SHOW: | | - or go back to the newest paste.
1
/*change email from wordpress at domain dot com */
2
add_filter('wp_mail_from', 'new_mail_from');
3
add_filter('wp_mail_from_name', 'new_mail_from_name');
4
5
function new_mail_from($old) {
6
 return '[email protected]';
7
}
8
function new_mail_from_name($old) {
9-
 return 'Whatever Name you want';
9+
 return 'Put Whatever Name you want';
10
}