bghouse
bghouse

Reputation: 558

Disable WordPress 5.5 plugin emails

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

Answers (1)

bghouse
bghouse

Reputation: 558

After more research, I think this will work.

https://make.wordpress.org/core/2020/07/30/controlling-plugin-and-theme-auto-update-email-notifications-and-site-health-infos-in-wp-5-5/

// 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

Related Questions