禁止WordPress自动更新邮件通知

quality,Q 70

1638625262 20211204134102 61ab6feeac085

1638625262 20211204134102 61ab6feeb18ce

默认情况下WordPress小版本安全更新后,会发送一封邮件通知您的站点已更新。如果你有多个WordPress站点,每个站都发一次就有些让人厌烦了,可以通过本文的方法禁止WordPress自动更新邮件通知功能。

将下面的代码添加到当前主题的functions.php中:

  1. add_filter( ‘auto_core_update_send_email’, ‘wpb_stop_auto_update_emails’, 10, 4 );
  2. function wpb_stop_update_emails( $send$type$core_update$result ) {
  3. if ( ! emptyempty$type ) && $type == ‘success’ ) {
  4. return false;
  5. }
  6. return true;
  7. }

以上代码通过添加一个过滤器禁用自动更新邮件通知功能。

原文:http://www.wpbeginner.com/wp-tutorials/how-to-disable-automatic-update-email-notification-in-wordpress/

类似文章