要隐藏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核心、插件和主题的版本升级提示。这是一个安全措施,但也意味着您需要负责保持WordPress、插件和主题的最新版本以确保安全性。