Skip to main content
Login Join
Snippet · PHP

Disable Update Notifications Email

Shared by Nazim Husain · April 27, 2026

19 views
Back to Snippets
// Disable core update emails
add_filter( 'auto_core_update_send_email', '__return_false' );

// Disable plugin update emails
add_filter( 'auto_plugin_update_send_email', '__return_false' );

// Disable theme update emails
add_filter( 'auto_theme_update_send_email', '__return_false' );
Know a different way to do this? Add your approach as a variation so folks can compare them side by side.
Submit a variation

0 comments