Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@maddisondesigns
Created August 10, 2022 06:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maddisondesigns/6bc52b3a8f8630959cfc17f07ab383d9 to your computer and use it in GitHub Desktop.
Save maddisondesigns/6bc52b3a8f8630959cfc17f07ab383d9 to your computer and use it in GitHub Desktop.
Remove the WordPress Site Health Dashboard Widget
/**
* Remove the Site Health Dashboard Widget
*/
function ephemeris_remove_site_health_dashboard_widget() {
remove_meta_box( 'dashboard_site_health', 'dashboard', 'normal' );
}
add_action( 'wp_dashboard_setup', 'ephemeris_remove_site_health_dashboard_widget' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment