Skip to content

Instantly share code, notes, and snippets.

@johnkolbert
Created January 7, 2011 05:45
Show Gist options
  • Star 15 You must be signed in to star a gist
  • Fork 6 You must be signed in to fork a gist
  • Save johnkolbert/769160 to your computer and use it in GitHub Desktop.
Save johnkolbert/769160 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 );
}
}
?>
@fgilio
Copy link

fgilio commented Sep 28, 2016

@kjprince
Copy link

kjprince commented Oct 7, 2016

@fgilio good find, just note that the function can't be used to remove default post types.

@goodyis
Copy link

goodyis commented Oct 30, 2017

None of that worked for me; but probably because the CPT's were from the theme it self. "Flora"

What did work: [placed within child theme --> functions.php]

function delete_post_type(){
    unregister_post_type( 'wyde_portfolio' );
    unregister_post_type('wyde_team_member');
    unregister_post_type('wyde_testimonial');
}
add_action('init','delete_post_type');

Then used a plugin to rid DB of the post's data.
CPT Cleanup

@heatherannelynn
Copy link

None of this worked for me.. Why do we continue to use this horrible CMS? #clownworld

@heatherannelynn
Copy link

@fgilio it may be built in. - but doesn't work as this thread shows it is a clusterF8ck nightmare of a solution.

@heatherannelynn
Copy link

If you created the cpti in the admin panel - you have to delete it from the admin panel . functions.php doesn't seem to have any effect at all - shocking , I know. .. smh

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment