wordpress后台优化
修改function.php
在主题的function.php的头部加入
// 彻底关闭自动更新
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.php', 'wp_update_plugins' );
remove_action( 'load-update.php', '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' );
修改wp-config.php
关闭wordpress小版本更新
define( 'AUTOMATIC_UPDATER_DISABLED', true );
作者:503611908
来源:https://www.eutaboo.com/index.php/2021/04/17/wordpress%e5%90%8e%e5%8f%b0%e4%bc%98%e5%8c%96/
文章版权归作者所有,未经允许请勿转载。
来源:https://www.eutaboo.com/index.php/2021/04/17/wordpress%e5%90%8e%e5%8f%b0%e4%bc%98%e5%8c%96/
文章版权归作者所有,未经允许请勿转载。
THE END
0
二维码
打赏
海报


wordpress后台优化
修改function.php
在主题的function.php的头部加入
// 彻底关闭自动更新
add_filter('automatic_updater_disabled', '__return_true');
// 关闭更新检查定时作……

文章目录
关闭