Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save theperfectwill/eb56696f6d0e1bf1766ed9c93f70be4e to your computer and use it in GitHub Desktop.
Save theperfectwill/eb56696f6d0e1bf1766ed9c93f70be4e to your computer and use it in GitHub Desktop.
Unregisters a post type and removes the menu item
<?php
/*
* Usage for a custom post type named 'movies':
* unregister_post_type( 'movies' );
*
* Usage for the built in 'post' post type:
* unregister_post_type( 'post', 'edit.php' );
*/
function unregister_post_type( $post_type, $slug = '' ){
global $wp_post_types;
if ( isset( $wp_post_types[ $post_type ] ) ) {
unset( $wp_post_types[ $post_type ] );
$slug = ( !$slug ) ? 'edit.php?post_type=' . $post_type : $slug;
remove_menu_page( $slug );
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment