Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save alrnz/f3240531e49ea7e307654e402b96a0ff to your computer and use it in GitHub Desktop.
Save alrnz/f3240531e49ea7e307654e402b96a0ff to your computer and use it in GitHub Desktop.
Change the recipient email for auto_core_update_email
<?php
// change email of auto update notification
function filter_change_auto_update_email( $email ) {
$email['to'] = 'username@example.com';
return $email;
}
add_filter( 'auto_core_update_email', 'filter_change_auto_update_email', 1 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment