Created
July 24, 2013 02:54
-
-
Save seafarer/6067760 to your computer and use it in GitHub Desktop.
Remove widgets from wordpress 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
| function 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']['normal']['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']); | |
| } | |
| 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