mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
https://www.wpbeginner.com/wp-tutorials/how-to-disable-automatic-update-email-notification-in-wordpress/
8 lines
238 B
Text
8 lines
238 B
Text
add_filter( 'auto_core_update_send_email', 'wpb_stop_auto_update_emails', 10, 4 );
|
|
|
|
function wpb_stop_update_emails( $send, $type, $core_update, $result ) {
|
|
if ( ! empty( $type ) && $type == 'success' ) {
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|