Skip to content

Instantly share code, notes, and snippets.

@mihail-petrov
Forked from johnkolbert/gist:769160
Last active December 17, 2015 19:09
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mihail-petrov/5657944 to your computer and use it in GitHub Desktop.
Save mihail-petrov/5657944 to your computer and use it in GitHub Desktop.
<?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