Skip to content

Instantly share code, notes, and snippets.

@someguy9
Created February 17, 2021 14:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save someguy9/dbb96f6e04941236c09bdf90735974a4 to your computer and use it in GitHub Desktop.
Save someguy9/dbb96f6e04941236c09bdf90735974a4 to your computer and use it in GitHub Desktop.
Disable automatic "Your Site Has Been Updated..." emails
<?php
//Disable automatic "Your Site Has Been Updated..." emails
add_filter( 'auto_core_update_send_email', 'smartwp_disable_core_update_emails', 10, 4 );
function smartwp_disable_core_update_emails( $send, $type, $core_update, $result ) {
if ( !empty($type) && $type == 'success' ) {
return false;
}
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment