WordPress is forbidden to automatically update email notification details

Source: Internet
Author: User

By default, the WordPress minor version security update sends a message informing you that your site has been updated. If you have more than one WordPress site, each station is a bit annoying to send one at a time, you can use this method to prevent WordPress automatically update mail notification function.
Add the following code to the functions.php of the current topic:

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 (! Emptyempty ($type) && $type = = ' success ') {
return false;
}
return true;
}

The above code disables the Automatic Update message notification feature by adding a filter

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.