Skip to content

Instantly share code, notes, and snippets.

@allysonsouza
Created August 28, 2021 14:54
Show Gist options
  • Select an option

  • Save allysonsouza/df6279b4d9c7f60d4f0d072834ae6983 to your computer and use it in GitHub Desktop.

Select an option

Save allysonsouza/df6279b4d9c7f60d4f0d072834ae6983 to your computer and use it in GitHub Desktop.
Remove WordPress dashboard widgets
<?php
/**
* Remove dashboard widgets.
*/
function remove_dashboard_widgets() {
remove_meta_box( 'dashboard_recent_comments', 'dashboard', 'normal' );
remove_meta_box( 'dashboard_quick_press', 'dashboard', 'side' );
remove_meta_box( 'dashboard_incoming_links', 'dashboard', 'normal' );
remove_meta_box( 'dashboard_plugins', 'dashboard', 'normal' );
remove_meta_box( 'dashboard_primary', 'dashboard', 'side' );
remove_meta_box( 'dashboard_secondary', 'dashboard', 'side' );
remove_meta_box( 'dashboard_recent_drafts', 'dashboard', 'side' );
// Yoast's SEO Plugin Widget
remove_meta_box( 'yoast_db_widget', 'dashboard', 'normal' );
}
add_action( 'wp_dashboard_setup', 'remove_dashboard_widgets' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment