wordpress如何禁止系统自动更新邮件通知

2025年02月14日 建站教程

wordpress每次系统更新后,都会有邮件提醒,那么如何禁止系统自动更新邮件通知呢?下面web建站小编给大家具体方法!

打开当前主题的functions.php​文件,新增以下代码:

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;
}

本文链接:http://so.lmcjl.com/news/23159/

展开阅读全文
相关内容