方法一 编辑wp-config.php配置文件 加入以下内容 /** 关闭WordPress自动更新升级 */ define(‘AUTOMATIC_UPDATER_DISABLED’, true);
方法二 在主题functions.php中添加一个钩子
add_filter( ‘automatic_updater_disabled’, ‘__return_true’ ); 关闭 查看更多关于 关闭 的文章 更新提示: 在主题functions.php中添加:
//disable update add_filter(‘pre_site_transient_update_core’, create_function(‘
a
′
,
"
r
e
t
u
r
n
n
u
l
l
;
"
)
)
;
/
/
关
闭
核
心
提
示
a
d
d
f
i
l
t
e
r
(
′
p
r
e
s
i
t
e
t
r
a
n
s
i
e
n
t
u
p
d
a
t
e
p
l
u
g
i
n
s
′
,
c
r
e
a
t
e
f
u
n
c
t
i
o
n
(
′
a', "return null;")); // 关闭核心提示 add_filter('pre_site_transient_update_plugins', create_function('
a′,"returnnull;"));//关闭核心提示addf?ilter(′pres?itet?ransientu?pdatep?lugins′,createf?unction(′a’, “return null;”)); // 关闭插件提示 add_filter(‘pre_site_transient_update_themes’, create_function(’$a’, “return null;”)); // 关闭主题提示 remove_action(‘admin_init’, ‘_maybe_update_core’); // 禁止 WordPress 检查更新 remove_action(‘admin_init’, ‘_maybe_update_plugins’); // 禁止 WordPress 更新插件 remove_action(‘admin_init’, ‘_maybe_update_themes’); // 禁止 WordPress 更新主题
|