如果您用的主题或者插件无法兼容新版WordPress
,或者就是单纯的不想升级,但看着后台的更新提示又心烦,可以参考本文的方法,禁用WordPress
更新提示。
通过代码禁用WordPress更新提示
将代码添加到当前主题函数模板functions.php
中:
移除wordpress版本更新提示
add_filter( 'pre_site_transient_update_core', create_function( '$a', "return null;" ) );
移除wordpress插件更新提示
remove_action( 'load-update-core.php', 'wp_update_plugins' );
add_filter( 'pre_site_transient_update_plugins', create_function( '$b', "return null;" ) );
使用插件禁用WordPress更新提示
Disable All Update & Notification插件下载
启用插件后,无需要设置,更新提示消失。通过插件还可以禁用所有 WordPress
更新,包括核心、插件和主题更新。
本文作者:风雪,转载时请注明本文出处:https://www.fxnetw.com/115.html
共
0
条评论