rem_change_admin_email

This filter can be used to change the admin email. By default, REM uses WordPress’s admin email for sending emails.

Arguments

  1. Admin Email [String]

Example

The following code will set the admin email to someone@gmail.com. Please paste the following code in your theme’s functions.php file.

add_filter( 'rem_change_admin_email', 'rem_change_admin_email', 10, 1 );

function rem_change_admin_email($email){
	return 'someone@gmail.com';
}