Skip to content

Instantly share code, notes, and snippets.

@annalinneajohansson
Created February 26, 2015 08:12
Show Gist options
  • Save annalinneajohansson/9d503d43637408a01ee6 to your computer and use it in GitHub Desktop.
Save annalinneajohansson/9d503d43637408a01ee6 to your computer and use it in GitHub Desktop.
Change the recipient email for auto_core_update_email
<?php
function hip_filter_auto_update_email( $email ) {
$email['to'] = 'username@example.com';
return $email;
}
add_filter( 'auto_core_update_email', 'hip_filter_auto_update_email', 1 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment