Skip to content

Instantly share code, notes, and snippets.

@luizbills
Created May 21, 2025 14:01
Show Gist options
  • Save luizbills/e3081ec1c537fd185d021b43511985b8 to your computer and use it in GitHub Desktop.
Save luizbills/e3081ec1c537fd185d021b43511985b8 to your computer and use it in GitHub Desktop.
Multiple admin emails for WordPress
<?php
/**
* Multiple administrator emails
* @author Luiz Bills
*/
add_filter( 'option_admin_email', function ( $value ) {
global $pagenow;
$ignored_pages = [ 'options-general.php' ];
if ( in_array( $pagenow, $ignored_pages, true ) ) {
return $value;
}
$list = explode( ',', $value );
$list[] = '[email protected]';
$list[] = '[email protected]';
return implode( ',', $list );
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment