Advertisement
Guest User

Untitled

a guest
Apr 20th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. /*
  2. * Remove WordPress Dashboard Widget
  3. */
  4. function remove_dashboard_widgets() {
  5. remove_meta_box( 'dashboard_quick_press', 'dashboard', 'side' ); //Quick Press widget
  6. remove_meta_box( 'dashboard_recent_drafts', 'dashboard', 'side' ); //Recent Drafts
  7. remove_meta_box( 'dashboard_primary', 'dashboard', 'side' ); //WordPress.com Blog
  8. remove_meta_box( 'dashboard_secondary', 'dashboard', 'side' ); //Other WordPress News
  9. remove_meta_box( 'dashboard_incoming_links', 'dashboard', 'normal' ); //Incoming Links
  10. remove_meta_box( 'dashboard_plugins', 'dashboard', 'normal' ); //Plugins
  11. remove_meta_box( 'dashboard_right_now', 'dashboard', 'normal' ); //Right Now
  12. remove_meta_box( 'rg_forms_dashboard', 'dashboard', 'normal' ); //Gravity Forms
  13. remove_meta_box( 'dashboard_recent_comments', 'dashboard', 'normal' ); //Recent Comments
  14. remove_meta_box( 'icl_dashboard_widget', 'dashboard', 'normal' ); //Multi Language Plugin
  15. remove_meta_box( 'dashboard_activity', 'dashboard', 'normal' ); //Activity
  16. remove_action( 'welcome_panel', 'wp_welcome_panel' );
  17. }
  18. add_action( 'wp_dashboard_setup', 'remove_dashboard_widgets' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement