Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save joshuacharleslake/9f07253e8c7124ac2000181b044c61a3 to your computer and use it in GitHub Desktop.
Save joshuacharleslake/9f07253e8c7124ac2000181b044c61a3 to your computer and use it in GitHub Desktop.
Remove default 'posts' post type from wordpress
//Remove Posts Post Type
function remove_default_post_type() {
remove_menu_page('edit.php');
}
add_action('admin_menu','remove_default_post_type');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment