How to Suppress WordPress Update E-mails

Did you recently get an email that said something like:

> Howdy! Your site at http://example.com has been updated automatically to WordPress 3.7.1.

The file that is responsible is:

wp-admin/includes/class-wp-upgrader.php

And the function is `send_email` which is part of the class `WP_Automatic_Updater`

To disable the email messages you can add this code:

add_filter( ‘auto_core_update_send_email’, ‘__return_false’ );

For a lot of great options related to managing automatic updates in WordPress 3.7+ see [this question](http://wordpress.stackexchange.com/questions/120081/how-do-i-configure-automatic-updates-in-wordpress-3-7).

Related Posts:

  • No Related Posts
This entry was posted in Tech Tips and tagged . Bookmark the permalink.

Leave a Reply

Your email address will not be published. Required fields are marked *