Skip to content

Instantly share code, notes, and snippets.

@UmeshSingla
Created June 7, 2013 07:28
Show Gist options
  • Save UmeshSingla/5727589 to your computer and use it in GitHub Desktop.
Save UmeshSingla/5727589 to your computer and use it in GitHub Desktop.
Wordpress- Remove Widgets Form Dashboard
<?php
/* Add to remove default Widgets from Dashboard */
function remove_dashboard_widgets() {
global $wp_meta_boxes;
unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_incoming_links']);
unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_plugins']);
unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_quick_press']);
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