Skip to content

Instantly share code, notes, and snippets.

@blobaugh
Created October 2, 2015 20:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save blobaugh/92a0da590c87aec5a1d5 to your computer and use it in GitHub Desktop.
Save blobaugh/92a0da590c87aec5a1d5 to your computer and use it in GitHub Desktop.
Unregister post type
if ( ! function_exists( 'unregister_post_type' ) ) :
function unregister_post_type( $post_type ) {
global $wp_post_types;
if ( isset( $wp_post_types[ $post_type ] ) ) {
unset( $wp_post_types[ $post_type ] );
return true;
}
return false;
}
endif;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment