Reputation: 558
How do we disable emails about Wordpress 5.5’s new email notifications saying that plugins are up to date or out of date? I’ve made many sites and these emails are annoying.
Looking for some code to add to functions.php. Not a plugin.
Upvotes: 1
Views: 254
Reputation: 558
After more research, I think this will work.
// Disable auto-update email notifications for plugins.
add_filter( 'auto_plugin_update_send_email', '__return_false' );
// Disable auto-update email notifications for themes.
add_filter( 'auto_theme_update_send_email', '__return_false' );
Upvotes: 1