How to remove the site health dashboard widget WordPress
Are you trying to hide or remove the site health dashboard widget WordPress? Follow this below.
Add the code to your functions.php
file to remove the site health dashboard widget WordPress.
add_action('wp_dashboard_setup', 'remove_site_health_dashboard_widget');
function remove_site_health_dashboard_widget()
{
remove_meta_box('dashboard_site_health', 'dashboard', 'normal');
}