Warning: Undefined array key "night" in /www/wwwroot/dhaomu.com/wp-content/themes/b2/header.php on line 18

WordPress去除/禁止后台侧栏插件-主题-版本更新提示

今天使用了张戈修改的nginx-help插件修改版,官方版并无自动重启功能,因此不能更新。但是这WordPress后台一直有更新提示,这可真是bisi强迫症的节奏啊!所以老白博客@老白我就去网上找到了相应的教程,用于去除WordPress网站后台侧栏的更新提示:包括主题更新、插件更新以及版本更新等多种方式。

WordPress去除/禁止后台侧栏插件-主题-版本更新提示插图

1.关闭/禁止所有更新提示

修改主题文件function.php,在文件底部添加如下代码(更换主题后需要更新)

//去除所有更新提示并禁止更新-https://www.xcbtmw.com/17796.html
add_filter('pre_site_transient_update_core', create_function('$a', "return null;"));//关闭核心提示
add_filter('pre_site_transient_update_plugins', create_function('$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 更新主题

2.关闭某个插件的更新提示

修改主题文件function.php,在文件底部添加如下代码(更换主题后需要更新),这里需要注意的是插件位置,就是nginx-helper/nginx-helper.php部分

//屏蔽某个插件更新通知-https://www.xcbtmw.com/17796.html
function wcr_remove_update_notifications($value) {
// 要屏蔽的插件位置 (在wp-content/plugins文件夹下)
$plugins = array(
'nginx-helper/nginx-helper.php'
);
foreach ($plugins as $key => $plugin) {
if (empty($value->response[$plugin])) {
continue;
}
unset($value->response[$plugin]);
}
return $value;
}
add_filter('site_transient_update_plugins', 'wcr_remove_update_notifications');

以上就是老白博客@老白的分享了,更多请点击分类或者标签阅读吧!

温馨提示:
1.本站大部分内容均收集于网络!若内容若侵犯到您的权益,请发送邮件至:duhaomu@163.com,我们将第一时间处理!
2.资源所需价格并非资源售卖价格,是收集、整理、编辑详情以及本站运营的适当补贴,并且本站不提供任何免费技术支持。
3.所有资源仅限于参考和学习,版权归原作者所有,更多请阅读网站声明

给TA赞赏
共{{data.count}}人
人已赞赏
未整理

晓雅《激活你的“叛逆性”》让你看到生活里的无限可能!

2022-4-21 0:00:00

未整理

男神女神投票 v5.5.21

2022-4-22 0:00:00

0 条回复 A文章作者 M管理员

Warning: Trying to access array offset on value of type null in /www/wwwroot/dhaomu.com/wp-content/themes/b2/functions.php on line 3914

Warning: Trying to access array offset on value of type null in /www/wwwroot/dhaomu.com/wp-content/themes/b2/functions.php on line 3914
----《》
    暂无讨论,说说你的看法吧
个人中心
购物车
优惠劵
今日签到
有新私信 私信列表
搜索