HEX
Server: nginx/1.24.0
System: Linux 0c1023d6c65e 6.8.0-137-generic #137-Ubuntu SMP PREEMPT_DYNAMIC Fri Jul 17 20:28:23 UTC 2026 x86_64
User: root (0)
PHP: 8.3.33
Disabled: NONE
Upload Files
File: /var/www/html/wp-content/mu-plugins/disable-core-update-emails.php
<?php
/**
 * Plugin Name: Limit Core Update Emails
 * Description: Keeps WordPress core failure and critical update emails enabled, while suppressing successful-update and new-version-available notifications.
 */

add_filter( 'send_core_update_notification_email', '__return_false' );

add_filter(
	'auto_core_update_send_email',
	static function ( $send, $type ) {
		return 'success' !== $type;
	},
	10,
	2
);