Advertisement
Guest User

Untitled

a guest
May 24th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. /**
  2. * Remove All Dashboard Widgets
  3. */
  4.  
  5. function remove_dashboard_widgets() {
  6. global $wp_meta_boxes;
  7. unset( $wp_meta_boxes['dashboard']['side']['core']['dashboard_quick_press'] );
  8. unset( $wp_meta_boxes['dashboard']['normal']['core']['dashboard_incoming_links'] );
  9. unset( $wp_meta_boxes['dashboard']['normal']['core']['dashboard_right_now'] );
  10. unset( $wp_meta_boxes['dashboard']['normal']['core']['dashboard_plugins'] );
  11. unset( $wp_meta_boxes['dashboard']['normal']['core']['dashboard_recent_drafts'] );
  12. unset( $wp_meta_boxes['dashboard']['normal']['core']['dashboard_recent_comments'] );
  13. unset( $wp_meta_boxes['dashboard']['side']['core']['dashboard_primary'] );
  14. unset( $wp_meta_boxes['dashboard']['side']['core']['dashboard_secondary'] );
  15. remove_meta_box( 'dashboard_activity', 'dashboard', 'normal' );
  16. }
  17. add_action( 'wp_dashboard_setup', 'remove_dashboard_widgets' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement