{"id":16313,"date":"2026-08-31T07:16:57","date_gmt":"2026-08-31T07:16:57","guid":{"rendered":"https:\/\/www.24x7wpsupport.com\/blog\/?p=16313"},"modified":"2026-08-31T07:21:06","modified_gmt":"2026-08-31T07:21:06","slug":"hide-remove-site-health-screen-wordpress-2026","status":"publish","type":"post","link":"https:\/\/www.24x7wpsupport.com\/blog\/hide-remove-site-health-screen-wordpress-2026\/","title":{"rendered":"How to Hide or Remove the Site Health Screen in WordPress (2026)"},"content":{"rendered":"<p>The Site Health screen has shipped with WordPress since version 5.2. It grades your site, flags warnings, and lists dozens of technical details. That is useful for a developer. It is often confusing for a client who just wants to write a blog post.<\/p>\n<p>A yellow &#8220;Should be improved&#8221; notice can spark a panic email. Worse, the Info tab exposes your PHP version, database size, server software, and full plugin list to anyone who can reach that page. Many site owners would rather that screen was not there at all.<\/p>\n<p>This guide shows you exactly how to hide or remove Site Health. You will get working code for each method, the file to put it in, and the trade-offs of each choice. Every snippet below works on current WordPress releases in 2026.<\/p>\n<h2>What the Site Health Feature Actually Adds to Your Admin Area<\/h2>\n<p>Before you remove anything, you need to know what you are removing. Site Health is not one thing. It is three separate pieces, and each one needs its own fix.<\/p>\n<p>The first piece is the <strong>Site Health Status widget<\/strong>. It sits on your main dashboard at <em>Dashboard \u2192 Home<\/em>. It shows a coloured circle and a short summary of passed and failed tests. Its internal ID is <code>dashboard_site_health<\/code>.<\/p>\n<p>The second piece is the <strong>Site Health page<\/strong> itself. You reach it at <em>Tools \u2192 Site Health<\/em>. The file behind it is <code>site-health.php<\/code>. It has two tabs: Status and Info. The Info tab is the one that lists your server details.<\/p>\n<p>The third piece is the <strong>set of tests<\/strong> that produce the score. WordPress runs some tests instantly and others in the background over AJAX. Plugins can add their own tests to this list too.<\/p>\n<p>You can remove any one of these on its own. Hiding the widget does not hide the page. Hiding the page does not stop the tests from running. Decide which piece is actually causing the problem, then pick the matching method below.<\/p>\n<h2>Method 1: Remove the Site Health Widget From the Dashboard<\/h2>\n<p>This is the change most people actually want. It clears the coloured warning box off the main dashboard without touching anything else. The Site Health page stays available to you under Tools.<\/p>\n<p>WordPress registers the widget during the <code>wp_dashboard_setup<\/code> action. You remove it with <code>remove_meta_box()<\/code>. Add this snippet to your theme&#8217;s <code>functions.php<\/code> file or to a small plugin:<\/p>\n<pre><code>add_action( 'wp_dashboard_setup', 'wps_remove_site_health_widget', 20 );\r\nfunction wps_remove_site_health_widget() {\r\n    remove_meta_box( 'dashboard_site_health', 'dashboard', 'normal' );\r\n}<\/code><\/pre>\n<p>The priority of <code>20<\/code> matters. WordPress adds the widget at the default priority of 10. Your code has to run after that, or there is nothing there to remove yet. If the widget still shows up, raise the number to 99 and try again.<\/p>\n<p>Reload the dashboard once the code is saved. The box should be gone for every user. If it is gone for you but still visible for someone else, they may have dragged it into a different column. Change <code>'normal'<\/code> to <code>'side'<\/code> and add a second <code>remove_meta_box()<\/code> call to cover both.<\/p>\n<p>One warning. Do not try to hide the widget with CSS such as <code>#dashboard_site_health { display: none; }<\/code>. The widget still loads, the tests still run, and anyone can reveal it with browser tools. Removing it in PHP is faster and actually works.<\/p>\n<h2>Method 2: Remove the Tools \u2192 Site Health Menu Item<\/h2>\n<p>Sometimes the widget is fine but the menu item is the problem. A client clicks Tools, sees Site Health, opens it, and then asks why their site &#8220;has errors&#8221;. Taking the link out of the menu solves that.<\/p>\n<p>The Site Health page is registered as a submenu of Tools. You remove the link with <code>remove_submenu_page()<\/code> on the <code>admin_menu<\/code> hook:<\/p>\n<pre><code>add_action( 'admin_menu', 'wps_remove_site_health_page', 999 );\r\nfunction wps_remove_site_health_page() {\r\n    remove_submenu_page( 'tools.php', 'site-health.php' );\r\n}<\/code><\/pre>\n<p>Use a high priority such as 999 here. Plugins add and reorder menu items on this same hook. Running last means your removal is not undone by something else.<\/p>\n<p>Be clear about what this does. It only hides the link. The page still exists. Anyone who types <code>\/wp-admin\/site-health.php<\/code> into the address bar will still load it. That is fine if you are only tidying the menu for convenience.<\/p>\n<p>If you need the page genuinely blocked, use Method 3 instead. Hiding a menu item is a cosmetic change, not a security control. The same logic applies to any admin menu you trim, which is why it helps to understand <a style=\"color: #ffba00; text-decoration: underline;\" href=\"https:\/\/www.24x7wpsupport.com\/blog\/how-to-limit-dashboard-access-in-wordpress\/\">how to limit dashboard access in WordPress<\/a> properly.<\/p>\n<h2>Method 3: Block Site Health by Capability for Non-Admins<\/h2>\n<p>This is the strongest and cleanest option. WordPress gates the whole Site Health feature behind a single meta capability called <code>view_site_health_checks<\/code>. Take that capability away and the widget, the menu item, and direct URL access all disappear together.<\/p>\n<p>Filter <code>map_meta_cap<\/code> and deny the capability to anyone who is not an administrator:<\/p>\n<pre><code>add_filter( 'map_meta_cap', 'wps_restrict_site_health', 10, 4 );\r\nfunction wps_restrict_site_health( $caps, $cap, $user_id, $args ) {\r\n    if ( 'view_site_health_checks' === $cap ) {\r\n        $user = get_userdata( $user_id );\r\n        if ( ! $user || ! in_array( 'administrator', (array) $user-&gt;roles, true ) ) {\r\n            $caps[] = 'do_not_allow';\r\n        }\r\n    }\r\n    return $caps;\r\n}<\/code><\/pre>\n<p>The <code>do_not_allow<\/code> value is a real WordPress convention. No role holds it, so adding it to the required list makes the check fail. A blocked user who visits the URL directly gets a permission error instead of the page.<\/p>\n<p>You can flip this rule around just as easily. To hide Site Health from every user including yourself, delete the role check and always append <code>do_not_allow<\/code>. To allow one specific person, compare <code>$user_id<\/code> against their ID before denying.<\/p>\n<p>Because this method works through the capability system, it behaves predictably with editors, authors, and any custom roles you have created. If you are unsure which role a user holds, our guide to <a style=\"color: #ffba00; text-decoration: underline;\" href=\"https:\/\/www.24x7wpsupport.com\/blog\/wordpress-user-roles-and-permissions-explained-in-detail\/\">WordPress user roles and permissions<\/a> walks through each level.<\/p>\n<h2>Method 4: Silence Individual Tests Instead of Hiding Everything<\/h2>\n<p>Removing the whole screen is a blunt fix. Often only one or two warnings are the real annoyance, and the rest of the report is worth keeping. In that case, remove just the tests you do not need.<\/p>\n<p>WordPress passes the full test list through the <code>site_status_tests<\/code> filter. The list is an array with two keys: <code>direct<\/code> for instant tests and <code>async<\/code> for background ones. Unset the entries you want gone:<\/p>\n<pre><code>add_filter( 'site_status_tests', 'wps_trim_site_health_tests' );\r\nfunction wps_trim_site_health_tests( $tests ) {\r\n    unset( $tests['direct']['plugin_theme_auto_updates'] );\r\n    unset( $tests['async']['background_updates'] );\r\n    return $tests;\r\n}<\/code><\/pre>\n<p>To find the right key, open the Status tab and expand the warning. The test slug usually matches the wording of the heading. Common keys include <code>php_version<\/code>, <code>https_status<\/code>, <code>scheduled_events<\/code>, and <code>rest_availability<\/code>.<\/p>\n<p>Choose carefully here. A warning about an outdated PHP version is worth acting on rather than hiding, since it affects both speed and security. Check where you stand first with our short guide on <a style=\"color: #ffba00; text-decoration: underline;\" href=\"https:\/\/www.24x7wpsupport.com\/blog\/how-to-check-your-wordpress-php-version\/\">how to check your WordPress PHP version<\/a>.<\/p>\n<p>Site Health also caches its result for a short period. After you remove a test, the score may not update straight away. Reload the Status tab once or twice and the stale entry will clear.<\/p>\n<h2>Where to Put the Code So It Survives Updates<\/h2>\n<p>Your snippet has to live somewhere that a theme or core update will not overwrite. There are three sensible homes, and one of them is a mistake many people make.<\/p>\n<p>The mistake is editing the <code>functions.php<\/code> file of a parent theme. The next theme update wipes it. If you want to use a theme file, use a child theme instead, which keeps your code separate and safe. Our explainer on <a style=\"color: #ffba00; text-decoration: underline;\" href=\"https:\/\/www.24x7wpsupport.com\/blog\/what-is-a-wordpress-child-theme-2026\/\">what a WordPress child theme is<\/a> covers the setup in a few minutes.<\/p>\n<p>The better option is a must-use plugin. Create a folder called <code>mu-plugins<\/code> inside <code>wp-content<\/code> if it does not already exist. Add a file named <code>site-health-tweaks.php<\/code>, open it with <code>&lt;?php<\/code>, and paste your snippet below. WordPress loads every file in that folder automatically. There is nothing to activate and nobody can deactivate it by accident.<\/p>\n<p>A normal plugin also works well if you want an on and off switch. Create <code>wp-content\/plugins\/site-health-tweaks\/site-health-tweaks.php<\/code>, add a plugin header comment with a name, then activate it from the Plugins screen. Turning the feature back on later is then a single click.<\/p>\n<p>Whichever route you pick, edit the file over SFTP or through your host&#8217;s file manager. Avoid the built-in theme and plugin editors. A typo there can lock you out of the admin area entirely.<\/p>\n<h2>Should You Hide Site Health at All?<\/h2>\n<p>Hiding a warning does not fix the problem behind it. That is worth saying plainly before you paste any of this code. Site Health exists because those checks catch real issues, and some of them matter a great deal.<\/p>\n<p>There is a strong case for hiding it on client sites. A non-technical owner cannot act on a loopback request failure. All the warning does is create worry and a support ticket. Removing it from their view while you monitor it yourself is a reasonable and common practice.<\/p>\n<p>There is a weaker case for hiding it on your own site. If the score is orange, something on the site genuinely needs attention. A missing scheduled event can stop backups, and a failed REST route can break your editor. Those are worth an hour of your time.<\/p>\n<p>A middle path often works best. Use Method 3 to restrict the screen to administrators, and keep checking it yourself on a set schedule. Pair it with a broader performance review, since several Site Health flags overlap with the causes covered in our guide to <a style=\"color: #ffba00; text-decoration: underline;\" href=\"https:\/\/www.24x7wpsupport.com\/blog\/how-to-fix-slow-admin-dashboard-for-faster-loading\/\">fixing a slow WordPress admin dashboard<\/a>.<\/p>\n<h2>Restoring Site Health and Fixing Common Problems<\/h2>\n<p>Every method here is fully reversible. Delete the snippet, save the file, and reload the admin area. The widget, the menu item, and the tests all come straight back. Nothing is written to the database, so there is nothing to clean up afterwards.<\/p>\n<p>If the widget refuses to disappear, the usual cause is priority. Your <code>wp_dashboard_setup<\/code> callback is running before WordPress has registered the box. Change the priority from 20 to 99 and reload.<\/p>\n<p>If the menu item is still there, another plugin is likely adding it back after your code runs. Raise the <code>admin_menu<\/code> priority to 9999. If it persists, deactivate plugins one at a time to find the one responsible.<\/p>\n<p>If you see a white screen after saving, you have a PHP syntax error. Connect over SFTP, delete or rename the file you just edited, and the site will load again. Check for a missing semicolon or an unclosed brace before pasting it back.<\/p>\n<p>Finally, remember that a caching plugin or a server-side page cache can hold on to an old version of the dashboard. Clear both caches before you decide the code did not work.<\/p>\n<h2>Get Expert Help With Your WordPress Admin Area<\/h2>\n<p>Trimming the admin area for a client is a small job with a lot of small traps. One misplaced character in <code>functions.php<\/code> can take a site offline, and a hidden warning can quietly turn into a real outage months later.<\/p>\n<p>Our team handles this kind of work every day. We tidy admin dashboards, lock down capabilities by role, resolve the warnings behind a poor Site Health score, and keep the whole site maintained so those warnings stop coming back. You get the clean dashboard your client wants and the monitoring your site needs.<\/p>\n<p>Visit <a style=\"color: #ffba00; text-decoration: underline;\" href=\"https:\/\/www.24x7wpsupport.com\">24&#215;7 WP Support<\/a> to talk to a WordPress expert. We are available around the clock, and the first conversation costs you nothing.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>The Site Health screen has shipped with WordPress since version 5.2. It grades your site, flags warnings, and lists dozens &#8230;<\/p>\n","protected":false},"author":1,"featured_media":16329,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1096],"tags":[2612,2613,2611,1109,903,1910,1196],"class_list":["post-16313","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-wordpress","tag-hide-site-health","tag-mu-plugins","tag-site-health","tag-wordpress-admin","tag-wordpress-dashboard","tag-wordpress-tutorial","tag-wordpress-user-roles"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Hide or Remove Site Health | 24x7 WP Support<\/title>\n<meta name=\"description\" content=\"Learn how to hide or remove the Site Health screen in WordPress in 2026. Four tested code methods for the widget, the menu item, and individual tests.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.24x7wpsupport.com\/blog\/hide-remove-site-health-screen-wordpress-2026\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Hide or Remove Site Health | 24x7 WP Support\" \/>\n<meta property=\"og:description\" content=\"Learn how to hide or remove the Site Health screen in WordPress in 2026. Four tested code methods for the widget, the menu item, and individual tests.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.24x7wpsupport.com\/blog\/hide-remove-site-health-screen-wordpress-2026\/\" \/>\n<meta property=\"og:site_name\" content=\"24x7WPSupport Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/24x7wpsupport\" \/>\n<meta property=\"article:published_time\" content=\"2026-08-31T07:16:57+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-08-31T07:21:06+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.24x7wpsupport.com\/blog\/wp-content\/uploads\/2026\/08\/Hide-or-Remove-the-Site-Health-Screen-in-WordPress-1024x576.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1024\" \/>\n\t<meta property=\"og:image:height\" content=\"576\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Brian\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@wpsupport24x7\" \/>\n<meta name=\"twitter:site\" content=\"@wpsupport24x7\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Brian\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"10 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.24x7wpsupport.com\\\/blog\\\/hide-remove-site-health-screen-wordpress-2026\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.24x7wpsupport.com\\\/blog\\\/hide-remove-site-health-screen-wordpress-2026\\\/\"},\"author\":{\"name\":\"Brian\",\"@id\":\"https:\\\/\\\/www.24x7wpsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/40ee989d8d57096afc53a526d6e612b0\"},\"headline\":\"How to Hide or Remove the Site Health Screen in WordPress (2026)\",\"datePublished\":\"2026-08-31T07:16:57+00:00\",\"dateModified\":\"2026-08-31T07:21:06+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.24x7wpsupport.com\\\/blog\\\/hide-remove-site-health-screen-wordpress-2026\\\/\"},\"wordCount\":1776,\"publisher\":{\"@id\":\"https:\\\/\\\/www.24x7wpsupport.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.24x7wpsupport.com\\\/blog\\\/hide-remove-site-health-screen-wordpress-2026\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.24x7wpsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/Hide-or-Remove-the-Site-Health-Screen-in-WordPress.png\",\"keywords\":[\"hide site health\",\"mu-plugins\",\"site health\",\"WordPress Admin\",\"WordPress Dashboard\",\"WordPress tutorial\",\"WordPress User Roles\"],\"articleSection\":[\"WordPress\"],\"inLanguage\":\"en-GB\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.24x7wpsupport.com\\\/blog\\\/hide-remove-site-health-screen-wordpress-2026\\\/\",\"url\":\"https:\\\/\\\/www.24x7wpsupport.com\\\/blog\\\/hide-remove-site-health-screen-wordpress-2026\\\/\",\"name\":\"Hide or Remove Site Health | 24x7 WP Support\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.24x7wpsupport.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.24x7wpsupport.com\\\/blog\\\/hide-remove-site-health-screen-wordpress-2026\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.24x7wpsupport.com\\\/blog\\\/hide-remove-site-health-screen-wordpress-2026\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.24x7wpsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/Hide-or-Remove-the-Site-Health-Screen-in-WordPress.png\",\"datePublished\":\"2026-08-31T07:16:57+00:00\",\"dateModified\":\"2026-08-31T07:21:06+00:00\",\"description\":\"Learn how to hide or remove the Site Health screen in WordPress in 2026. Four tested code methods for the widget, the menu item, and individual tests.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.24x7wpsupport.com\\\/blog\\\/hide-remove-site-health-screen-wordpress-2026\\\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.24x7wpsupport.com\\\/blog\\\/hide-remove-site-health-screen-wordpress-2026\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/www.24x7wpsupport.com\\\/blog\\\/hide-remove-site-health-screen-wordpress-2026\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.24x7wpsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/Hide-or-Remove-the-Site-Health-Screen-in-WordPress.png\",\"contentUrl\":\"https:\\\/\\\/www.24x7wpsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/Hide-or-Remove-the-Site-Health-Screen-in-WordPress.png\",\"width\":2560,\"height\":1440,\"caption\":\"Hide or Remove the Site Health Screen in WordPress\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.24x7wpsupport.com\\\/blog\\\/hide-remove-site-health-screen-wordpress-2026\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.24x7wpsupport.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Hide or Remove the Site Health Screen in WordPress (2026)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.24x7wpsupport.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.24x7wpsupport.com\\\/blog\\\/\",\"name\":\"24x7WPSupport Blog\",\"description\":\"WordPress Theme Update | WordPress Blog\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.24x7wpsupport.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.24x7wpsupport.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.24x7wpsupport.com\\\/blog\\\/#organization\",\"name\":\"24x7 WP Support\",\"url\":\"https:\\\/\\\/www.24x7wpsupport.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/www.24x7wpsupport.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.24x7wpsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/11\\\/wpsupportlatestlogo.png\",\"contentUrl\":\"https:\\\/\\\/www.24x7wpsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/11\\\/wpsupportlatestlogo.png\",\"width\":269,\"height\":64,\"caption\":\"24x7 WP Support\"},\"image\":{\"@id\":\"https:\\\/\\\/www.24x7wpsupport.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/24x7wpsupport\",\"https:\\\/\\\/x.com\\\/wpsupport24x7\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.24x7wpsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/40ee989d8d57096afc53a526d6e612b0\",\"name\":\"Brian\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5a5a62eb3263db905a008db8d80b6777dd5792da217d72772ec4c23dc58ec9d6?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5a5a62eb3263db905a008db8d80b6777dd5792da217d72772ec4c23dc58ec9d6?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5a5a62eb3263db905a008db8d80b6777dd5792da217d72772ec4c23dc58ec9d6?s=96&d=mm&r=g\",\"caption\":\"Brian\"},\"description\":\"Brian is a WordPress support specialist and content contributor at 24x7 WP Support. He writes practical, easy-to-follow guides on WordPress troubleshooting, WooCommerce issues, plugin and theme errors, website security, migrations, performance optimization, and integrations. With a focus on solving real website problems, Brian helps business owners, bloggers, and online store managers keep their WordPress sites running smoothly.\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Hide or Remove Site Health | 24x7 WP Support","description":"Learn how to hide or remove the Site Health screen in WordPress in 2026. Four tested code methods for the widget, the menu item, and individual tests.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.24x7wpsupport.com\/blog\/hide-remove-site-health-screen-wordpress-2026\/","og_locale":"en_GB","og_type":"article","og_title":"Hide or Remove Site Health | 24x7 WP Support","og_description":"Learn how to hide or remove the Site Health screen in WordPress in 2026. Four tested code methods for the widget, the menu item, and individual tests.","og_url":"https:\/\/www.24x7wpsupport.com\/blog\/hide-remove-site-health-screen-wordpress-2026\/","og_site_name":"24x7WPSupport Blog","article_publisher":"https:\/\/www.facebook.com\/24x7wpsupport","article_published_time":"2026-08-31T07:16:57+00:00","article_modified_time":"2026-08-31T07:21:06+00:00","og_image":[{"width":1024,"height":576,"url":"https:\/\/www.24x7wpsupport.com\/blog\/wp-content\/uploads\/2026\/08\/Hide-or-Remove-the-Site-Health-Screen-in-WordPress-1024x576.png","type":"image\/png"}],"author":"Brian","twitter_card":"summary_large_image","twitter_creator":"@wpsupport24x7","twitter_site":"@wpsupport24x7","twitter_misc":{"Written by":"Brian","Estimated reading time":"10 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.24x7wpsupport.com\/blog\/hide-remove-site-health-screen-wordpress-2026\/#article","isPartOf":{"@id":"https:\/\/www.24x7wpsupport.com\/blog\/hide-remove-site-health-screen-wordpress-2026\/"},"author":{"name":"Brian","@id":"https:\/\/www.24x7wpsupport.com\/blog\/#\/schema\/person\/40ee989d8d57096afc53a526d6e612b0"},"headline":"How to Hide or Remove the Site Health Screen in WordPress (2026)","datePublished":"2026-08-31T07:16:57+00:00","dateModified":"2026-08-31T07:21:06+00:00","mainEntityOfPage":{"@id":"https:\/\/www.24x7wpsupport.com\/blog\/hide-remove-site-health-screen-wordpress-2026\/"},"wordCount":1776,"publisher":{"@id":"https:\/\/www.24x7wpsupport.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.24x7wpsupport.com\/blog\/hide-remove-site-health-screen-wordpress-2026\/#primaryimage"},"thumbnailUrl":"https:\/\/www.24x7wpsupport.com\/blog\/wp-content\/uploads\/2026\/08\/Hide-or-Remove-the-Site-Health-Screen-in-WordPress.png","keywords":["hide site health","mu-plugins","site health","WordPress Admin","WordPress Dashboard","WordPress tutorial","WordPress User Roles"],"articleSection":["WordPress"],"inLanguage":"en-GB"},{"@type":"WebPage","@id":"https:\/\/www.24x7wpsupport.com\/blog\/hide-remove-site-health-screen-wordpress-2026\/","url":"https:\/\/www.24x7wpsupport.com\/blog\/hide-remove-site-health-screen-wordpress-2026\/","name":"Hide or Remove Site Health | 24x7 WP Support","isPartOf":{"@id":"https:\/\/www.24x7wpsupport.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.24x7wpsupport.com\/blog\/hide-remove-site-health-screen-wordpress-2026\/#primaryimage"},"image":{"@id":"https:\/\/www.24x7wpsupport.com\/blog\/hide-remove-site-health-screen-wordpress-2026\/#primaryimage"},"thumbnailUrl":"https:\/\/www.24x7wpsupport.com\/blog\/wp-content\/uploads\/2026\/08\/Hide-or-Remove-the-Site-Health-Screen-in-WordPress.png","datePublished":"2026-08-31T07:16:57+00:00","dateModified":"2026-08-31T07:21:06+00:00","description":"Learn how to hide or remove the Site Health screen in WordPress in 2026. Four tested code methods for the widget, the menu item, and individual tests.","breadcrumb":{"@id":"https:\/\/www.24x7wpsupport.com\/blog\/hide-remove-site-health-screen-wordpress-2026\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.24x7wpsupport.com\/blog\/hide-remove-site-health-screen-wordpress-2026\/"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/www.24x7wpsupport.com\/blog\/hide-remove-site-health-screen-wordpress-2026\/#primaryimage","url":"https:\/\/www.24x7wpsupport.com\/blog\/wp-content\/uploads\/2026\/08\/Hide-or-Remove-the-Site-Health-Screen-in-WordPress.png","contentUrl":"https:\/\/www.24x7wpsupport.com\/blog\/wp-content\/uploads\/2026\/08\/Hide-or-Remove-the-Site-Health-Screen-in-WordPress.png","width":2560,"height":1440,"caption":"Hide or Remove the Site Health Screen in WordPress"},{"@type":"BreadcrumbList","@id":"https:\/\/www.24x7wpsupport.com\/blog\/hide-remove-site-health-screen-wordpress-2026\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.24x7wpsupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Hide or Remove the Site Health Screen in WordPress (2026)"}]},{"@type":"WebSite","@id":"https:\/\/www.24x7wpsupport.com\/blog\/#website","url":"https:\/\/www.24x7wpsupport.com\/blog\/","name":"24x7WPSupport Blog","description":"WordPress Theme Update | WordPress Blog","publisher":{"@id":"https:\/\/www.24x7wpsupport.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.24x7wpsupport.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":"Organization","@id":"https:\/\/www.24x7wpsupport.com\/blog\/#organization","name":"24x7 WP Support","url":"https:\/\/www.24x7wpsupport.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/www.24x7wpsupport.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.24x7wpsupport.com\/blog\/wp-content\/uploads\/2018\/11\/wpsupportlatestlogo.png","contentUrl":"https:\/\/www.24x7wpsupport.com\/blog\/wp-content\/uploads\/2018\/11\/wpsupportlatestlogo.png","width":269,"height":64,"caption":"24x7 WP Support"},"image":{"@id":"https:\/\/www.24x7wpsupport.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/24x7wpsupport","https:\/\/x.com\/wpsupport24x7"]},{"@type":"Person","@id":"https:\/\/www.24x7wpsupport.com\/blog\/#\/schema\/person\/40ee989d8d57096afc53a526d6e612b0","name":"Brian","image":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/secure.gravatar.com\/avatar\/5a5a62eb3263db905a008db8d80b6777dd5792da217d72772ec4c23dc58ec9d6?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/5a5a62eb3263db905a008db8d80b6777dd5792da217d72772ec4c23dc58ec9d6?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/5a5a62eb3263db905a008db8d80b6777dd5792da217d72772ec4c23dc58ec9d6?s=96&d=mm&r=g","caption":"Brian"},"description":"Brian is a WordPress support specialist and content contributor at 24x7 WP Support. He writes practical, easy-to-follow guides on WordPress troubleshooting, WooCommerce issues, plugin and theme errors, website security, migrations, performance optimization, and integrations. With a focus on solving real website problems, Brian helps business owners, bloggers, and online store managers keep their WordPress sites running smoothly."}]}},"_links":{"self":[{"href":"https:\/\/www.24x7wpsupport.com\/blog\/wp-json\/wp\/v2\/posts\/16313","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.24x7wpsupport.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.24x7wpsupport.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.24x7wpsupport.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.24x7wpsupport.com\/blog\/wp-json\/wp\/v2\/comments?post=16313"}],"version-history":[{"count":2,"href":"https:\/\/www.24x7wpsupport.com\/blog\/wp-json\/wp\/v2\/posts\/16313\/revisions"}],"predecessor-version":[{"id":16328,"href":"https:\/\/www.24x7wpsupport.com\/blog\/wp-json\/wp\/v2\/posts\/16313\/revisions\/16328"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.24x7wpsupport.com\/blog\/wp-json\/wp\/v2\/media\/16329"}],"wp:attachment":[{"href":"https:\/\/www.24x7wpsupport.com\/blog\/wp-json\/wp\/v2\/media?parent=16313"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.24x7wpsupport.com\/blog\/wp-json\/wp\/v2\/categories?post=16313"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.24x7wpsupport.com\/blog\/wp-json\/wp\/v2\/tags?post=16313"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}