Do you want to disable the automatic updating of email notifications in WordPress? By default, WordPress sends an email notification to let you know that your WordPress site is updated after security updates. Recently one of our readers asked if there is an easy way to disable that. In this article, we will show you how to easily disable auto update email notification in WordPress.
WordPress is open source software that is maintained by a community of developers. It is regularly updated to fix security issues, bugs, and to add new features.
For this reason, you should always use the latest version of WordPress to ensure your website is secure and up to date.
WordPress automatically installs minor updates as soon as they are available. After the update, your WordPress site sends a notification to the WordPress admin email address.
The purpose of this email notification is simply to let you know that your WordPress site is up to date.
If you maintain multiple WordPress sites, you will receive an email from each website. This can be a bit annoying.
Let’s see how to easily disable automatic update email notification in WordPress.
This method is simpler and doesn't require you to add any code to your WordPress site.
The first thing you need to do is install and activate the Disable WordPress Core Update email. For more details, check out our step-by-step guide on how to install a WordPress plugin.
The plugin works out of the box, and there are no settings to configure.
Upon activation, simply disable the email notification sent after WordPress auto-update.
This method requires you to add code to your WordPress files. If you haven't done this before, check out our beginner's guide on how to paste web snippets into WordPress.
You'll need to add this code to your theme's functions.php file or a site-specific plugin.
add_filter ('auto_core_update_send_email', 'wpb_stop_auto_update_emails', 10, 4); función wpb_stop_update_emails ($ send, $ type, $ core_update, $ result) if (! empty ($ type) && $ type == 'success') return false; devuelve true;
This code simply adds a filter to disable email notifications after automatic kernel update.
By default, WordPress does not allow you to install updates automatically. Many site owners find it a bit of a hassle to update themes and plugins, especially if they maintain multiple WordPress sites.
Fortunately, there are plugins that allow you to more efficiently manage WordPress updates. For detailed instructions, check out our guide on how to best manage WordPress auto-updates.
Similarly, WordPress by default does not have a unified interface for managing notification emails. It may not even send email notifications and you wouldn't notice.
There are plugins that allow you to manage and control the emails sent by WordPress. You can even customize WordPress default emails. For detailed instructions, check out our guide on how to add better custom notifications in WordPress.
That's it, we hope this article will help you learn how to disable automatic email update notification in WordPress. You may also want to see our guide on 24 must have WordPress plugins for business websites.
If you enjoyed this article, please subscribe to our WordPress YouTube Channel video tutorials. You can also find us on Twitter and Facebook.