移除WordPress站点健康菜单

· WordPress · 34 views

修改主题的functions.php文件‌
在主题的functions.php文件中添加以下代码:

function nyphy_remove_site_health_menu(){
    remove_submenu_page( 'tools.php','site-health.php' ); 
}
add_action( 'admin_menu', 'nyphy_remove_site_health_menu' );