【转】WordPress 隐藏更新通知

因为用的 PHP 版本比较老,升级也比较麻烦(试过失败了),但 Wordpress 又一直提示升级~今天找到了一个办法隐藏提示,但保留主题和插件的提示

// hide update notifications
function remove_core_updates(){
global $wp_version;return(object) array('last_checked'=> time(),'version_checked'=> $wp_version,);
}
add_filter('pre_site_transient_update_core','remove_core_updates'); //hide updates for WordPress itself
add_filter('pre_site_transient_update_plugins','remove_core_updates'); //hide updates for all plugins
add_filter('pre_site_transient_update_themes','remove_core_updates'); //hide updates for all themes

来源:https://thomas.vanhoutte.be/miniblog/wordpress-hide-update/

发表回复