Skip to content

Instantly share code, notes, and snippets.

@aliciaduffy
Last active October 8, 2015 17:08
Show Gist options
  • Save aliciaduffy/3362657 to your computer and use it in GitHub Desktop.
Save aliciaduffy/3362657 to your computer and use it in GitHub Desktop.
WordPress / ADMIN / Remove Dashboard Boxes
<?php
add_action( 'wp_dashboard_setup', 'NAME_remove_dashboard_widgets', 100);
function NAME_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']);
unset($wp_meta_boxes['dashboard']['normal']['core']['w3tc_latest']);
unset($wp_meta_boxes['dashboard']['normal']['core']['w3tc_pagespeed']);
unset($wp_meta_boxes['dashboard']['normal']['core']['bbp-dashboard-right-now']);
}
// REFERENCE http://codex.wordpress.org/Dashboard_Widgets_API
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment