25% off ProSNIPC25OFF

Disable Site Health Widget and Page

Removes the Site Health dashboard widget and hides the Site Health submenu link from wp-admin.

PHPby SnipCraft
php
<?php
if ( ! function_exists( 'scseed_remove_site_health_widget' ) ) {
    function scseed_remove_site_health_widget() {
        remove_meta_box( 'dashboard_site_health', 'dashboard', 'normal' );
    }
}
if ( ! function_exists( 'scseed_remove_site_health_menu' ) ) {
    function scseed_remove_site_health_menu() {
        remove_submenu_page( 'tools.php', 'site-health.php' );
    }
}
add_action( 'wp_dashboard_setup', 'scseed_remove_site_health_widget' );
add_action( 'admin_menu', 'scseed_remove_site_health_menu', 999 );
#admin#cleanup#dashboard#site-health