Skip to content

Instantly share code, notes, and snippets.

@jonschr
Created May 1, 2014 21:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jonschr/46bcfe5cf1fb388d188d to your computer and use it in GitHub Desktop.
Save jonschr/46bcfe5cf1fb388d188d to your computer and use it in GitHub Desktop.
add_action('wp_dashboard_setup', 'rf_remove_dashboard_widgets' );
function rf_remove_dashboard_widgets() {
// this function removes the standard dashboard widgets for all users, including the main admin
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']['normal']['core']['dashboard_recent_drafts']);
unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_recent_comments']);
unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_activity']);
unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_primary']);
unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_secondary']);
remove_action( 'welcome_panel', 'wp_welcome_panel' );
// the commented code below will display the full array so that you can see what other things should need to be removed
/*
echo '<pre>';
print_r($wp_meta_boxes);
echo '</pre>';
*/
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment