Skip to content

Instantly share code, notes, and snippets.

@mdemrs
Last active August 29, 2015 14:16
Show Gist options
  • Save mdemrs/43dc7e16ceedf33fce28 to your computer and use it in GitHub Desktop.
Save mdemrs/43dc7e16ceedf33fce28 to your computer and use it in GitHub Desktop.
wp: admin remove_meta_box
function remove_dashboard_meta() {
remove_meta_box( 'dashboard_incoming_links', 'dashboard', 'normal' );
remove_meta_box( 'dashboard_plugins', 'dashboard', 'normal' );
remove_meta_box( 'dashboard_primary', 'dashboard', 'side' );
remove_meta_box( 'dashboard_secondary', 'dashboard', 'normal' );
remove_meta_box( 'dashboard_quick_press', 'dashboard', 'side' );
remove_meta_box( 'dashboard_recent_drafts', 'dashboard', 'side' );
remove_meta_box( 'dashboard_recent_comments', 'dashboard', 'normal' );
remove_meta_box( 'dashboard_right_now', 'dashboard', 'normal' );
remove_meta_box( 'dashboard_activity', 'dashboard', 'normal');//since 3.8
}
add_action( 'admin_init', 'remove_dashboard_meta' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment