VPS参考、测评、推荐
分享你关注的VPS主机优惠信息

WordPress纯代码彻底关闭WordPress的自动更新和后台更新检查功能,WordPress技巧分享

WordPress纯代码彻底关闭WordPress的自动更新和后台更新检查功能,WordPress技巧分享

最近,几位客户找到我说非常慢,起初我以为是Google字体导致的,但是他们已经安装了相关的插件来屏蔽Google字体,后来,他们发现罪魁祸首是后台检测和自动功能。 更新在国外,由于一般原因,国内始终无法顺利连接到WordPress更新,因此它一直卡在其中,导致WordPress后台非常慢!

将以下代码添加到当前主题的functions.文件中,完全关闭WordPress自动更新和更新检查,因此在更新时,必须手动更新

add_filter('automatic_updater_disabled', '__return_true');	// 彻底自动更新    remove_action('init', 'wp_schedule_update_checks');	// 更新检查定时作业  wp_clear_scheduled_hook('wp_version_check');			// 移除已有的版本检查定时作业  wp_clear_scheduled_hook('wp_update_plugins');		// 移除已有的插件更新定时作业  wp_clear_scheduled_hook('wp_update_themes');			// 移除已有的主题更新定时作业  wp_clear_scheduled_hook('wp_maybe_auto_update');		// 移除已有的自动更新定时作业    remove_action( 'admin_init', '_maybe_update_core' );		// 移除后台内核更新检查    remove_action( 'load-plugins.', 'wp_update_plugins' );	// 移除后台插件更新检查  remove_action( 'load-update.', 'wp_update_plugins' );  remove_action( 'load-update-core.php', 'wp_update_plugins' );  remove_action( 'admin_init', '_maybe_update_plugins' );    remove_action( 'load-themes.php', 'wp_update_themes' );		// 移除后台主题更新检查  remove_action( 'load-update.php', 'wp_update_themes' );  remove_action( 'load-update-core.php', 'wp_update_themes' );  remove_action( 'admin_init', '_maybe_update_themes' );

 

:WordPress纯代码彻底关闭WordPress的自动更新和后台更新检查功能,WordPress技巧,https://.caogenba../4412.html

赞(0) 打赏
未经允许不得转载:草根吧VPS_最新VPS信息参考 » WordPress纯代码彻底关闭WordPress的自动更新和后台更新检查功能,WordPress技巧分享
分享到: 更多 (0)

评论 抢沙发

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址