Skip to content

Instantly share code, notes, and snippets.

@paulletourneau
Last active December 29, 2015 05:08
Show Gist options
  • Save paulletourneau/7619237 to your computer and use it in GitHub Desktop.
Save paulletourneau/7619237 to your computer and use it in GitHub Desktop.
Disable ALL unnecessary WordPress Dashboard widgets except 'Right Now' and 'Recent Comments'. Paste this into your functions.php file
//* Remove dashboard widgets
function remove_dashboard_widgets() {
global $wp_meta_boxes;
unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_quick_press']);
unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_incoming_links']);
//* unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_right_now']);
unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_plugins']);
unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_recent_drafts']);
//* unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_recent_comments']);
unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_primary']);
unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_secondary']);
}
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