Skip to content

Instantly share code, notes, and snippets.

@versluis
Created September 6, 2013 14:37
Show Gist options
  • Save versluis/6464723 to your computer and use it in GitHub Desktop.
Save versluis/6464723 to your computer and use it in GitHub Desktop.
Remove unwanted widgets from the WordPress Dashboard. Copy into your theme's functions.php file.
//Remove unwanted widgets from Dashboard
function remove_dashboard_widgets() {
global$wp_meta_boxes;
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