WordPress 博客隐藏后台版本升级提示代码
要隐藏WordPress博客后台的版本升级提示,您可以在主题的functions.php文件中添加以下代码:
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');
add_filter('pre_site_transient_update_plugins','remove_core_updates');
add_filter('pre_site_transient_update_themes','remove_core_updates');
请注意,这个代码会禁用WordPress核心、插件和主题的版本升级提示。这是一个安全措施,但也意味着您需要负责保持WordPress、插件和主题的最新版本以确保安全性。
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。
仍然有问题? 我们要如何帮助您?