How many unread emails are in your inbox right now? For many people, hundreds of answers. The bulk of these will be updates from services a user has already committed to, by one estimate. How likely is it that any WordPress update will cause a large number of users to quit? In an unusual way. Do we need to know the details of each update? This depends on the situation.
For some users, The exact details of each WordPress update are not crucial. These users may choose to disable automatic update emails while still enjoying the benefits of updates.
There is two easy ways to disable update emails, and that’s what this tutorial is about. But first, we’d like to take some time to talk about the automatic updates themselves. If you’re sure you need a how-to, don’t hesitate to go to the section you need.
These are the topics we will discuss:
As of version 5.5, WordPress introduced auto-update. This an important security feature, the person usually wants the latest version of each software they use, but you can still disable automatic WordPress updates if you want. Say you don’t want to disable updates though – let’s say you just want to disable auto update emails. What applies to WordPress itself also applies to themes and plugins. Do you need an email notification every time one of them is updated? Or would you rather have your inbox not cluttered? This goes double if you manage multiple websites: Do you need to know by email when each plugin you install is updated?
However, if you are a WordPress developer or a user with a technical background, You may want to be informed about the latest changes Made for WordPress and other software. There may be important technical details that can affect your current projects. If that’s the case, maybe you want the emails to come through.
If you don’t mind adding code directly to your website, all you have to do is make a small change to your theme. functions.php file. If you are not sure, we recommend going to the plugin section.
to access functions.php file, go to Appearance/Theme Editor From your WordPress dashboard.
From the menu on the right, functions.php Select the file and scroll to the bottom of the file. We recommend adding any code at the bottom to avoid disturbing anything else and possibly crashing your website.
If you want to disable automatic update emails for WordPress, you need to paste the following code into the file:
add_filter( 'auto_core_update_send_email', 'wpb_stop_auto_update_emails', 10, 4 );
function wpb_stop_update_emails( $send, $type, $core_update, $result ) {
if ( ! empty( $type ) && $type == 'success' ) {
return false;
}
return true;
}
After doing that, click Update File, and that’s it, you’re done. Emails will stop coming.
You can also use the code to disable auto update emails for themes and plugins.
The code you need to use for themes:
add_filter( 'auto_theme_update_send_email', '__return_false' );
Here is the code you need for the plugins:
add_filter( 'auto_plugin_update_send_email', '__return_false' );
Use any or all of these pieces of code as they don’t affect each other.
If you’re not very confident about changing your website’s code, don’t worry – there is another solution. As is often the case, this solution is an add-on.
In case all you want is disable plugin and theme auto update emailswe recommend you to try Disable automatic update Email Notifications. After installing and activating the plugin on a website, you do not need to take any further action – you will not receive these emails for updates about this website. WordPress does not stop update emailsdespite.
if you want more options, Disable WordPress Update Notifications and auto update Email Notifications It may be a good choice for you. After installing and activating, access its settings by going to: Settings/Disable Notifications From your WordPress dashboard.
The settings themselves are pretty simple: you get three sliders, one for each. Plugin Updates, Theme Updatesand WordPress Core Updates. simply everything OVER and click Save Changes and you will stop receiving any notifications.
The plugin also has a help tag, but mainly includes a link to Github in case a user runs into a problem.
As a result
And here you go, disabling auto-update emails can be done easily and quickly. Whether you do or not, this is a whole different kettle of water. If you have a more technical leaning, and especially if you are a developer, it may be better to stay up to date with the latest technical details. If not, you can ignore them. Whatever you do, you can still stay informed using WordPress’ own documentation and you can easily undo the changes you’ve made – just delete the code or disable the plugin and the emails will persist.
Support our work ❤️
If you enjoyed this article, consider leaving a tip to help us keep publishing great content.


























