Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save rsharrer/6714306 to your computer and use it in GitHub Desktop.
Save rsharrer/6714306 to your computer and use it in GitHub Desktop.
Remove certain meta-boxes from the Pages edit screen
function remove_default_page_screen_metaboxes() {
remove_meta_box( 'commentstatusdiv','page','normal' ); // Comments
remove_meta_box( 'trackbacksdiv','page','normal' ); // Talkback
}
add_action('admin_menu','remove_default_page_screen_metaboxes');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment