Skip to content

Instantly share code, notes, and snippets.

@smonteverdi
Created May 19, 2012 17:40
Show Gist options
  • Select an option

  • Save smonteverdi/2731658 to your computer and use it in GitHub Desktop.

Select an option

Save smonteverdi/2731658 to your computer and use it in GitHub Desktop.
WordPress: Hiding Dashboard Widgets
add_action('wp_dashboard_setup', 'wpc_dashboard_widgets');
function wpc_dashboard_widgets() {
global $wp_meta_boxes;
// Today widget
unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_right_now']);
// Last comments
unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_recent_comments']);
// Incoming links
unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_incoming_links']);
// Plugins
unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_plugins']);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment