Created
October 7, 2014 16:51
-
-
Save jptksc/f7f0a2029754a168da67 to your computer and use it in GitHub Desktop.
Clean the WP Dashboard
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Clean the dashboard. | |
function pk_clean_dashboard() { | |
global $wp_meta_boxes; | |
unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_recent_comments']); | |
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_recent_drafts']); | |
unset($wp_meta_boxes['dashboard']['normal']['core']['bbp-dashboard-right-now']); | |
unset($wp_meta_boxes['dashboard']['normal']['core']['yoast_db_widget']); | |
unset($wp_meta_boxes['dashboard']['normal']['core']['rg_forms_dashboard']); | |
} | |
add_action('wp_dashboard_setup', 'pk_clean_dashboard', 999); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment