Return to Snippet

Revision: 87714
at December 8, 2021 22:35 by chrisaiv


Updated URL
https://www.chrisjmendez.com/2014/09/18/wordpress-change-admin-e-mail-to-new-users-example-1/

Updated Code
https://www.chrisjmendez.com/2014/09/18/wordpress-change-admin-e-mail-to-new-users-example-1/

Updated Description
https://www.chrisjmendez.com/2014/09/18/wordpress-change-admin-e-mail-to-new-users-example-1/

Revision: 67397
at September 18, 2014 03:34 by chrisaiv


Initial Code
/** ******** ******** ******** ******** ******** ******** ******** ******** 
* TITLE:       Change admin e-mail to new users
* DESCRIPTION: enter the full email address you want displayed
* 
* http://miloguide.com/filter-hooks/wp_mail_from/
*/

function email_filter_wp_mail_from($email){
	return "[email protected]";
}
add_filter("wp_mail_from", "email_filter_wp_mail_from");

Initial URL
http://premium.wpmudev.org/blog/wordpress-email-settings/

Initial Description
enter the full email address you want displayed

Initial Title
Wordpress: Change admin e-mail to new users (example 1)

Initial Tags
wordpress

Initial Language
JavaScript