Skip to content

Instantly share code, notes, and snippets.

@mattboon
Created June 19, 2012 12:36
Show Gist options
  • Save mattboon/2953889 to your computer and use it in GitHub Desktop.
Save mattboon/2953889 to your computer and use it in GitHub Desktop.
WordPress - Remove / unregister taxonomy
<?php
add_action( 'init', 'unregister_taxonomy');
function unregister_taxonomy(){
global $wp_taxonomies;
$taxonomy = 'post_tag';
if ( taxonomy_exists( $taxonomy))
unset( $wp_taxonomies[$taxonomy]);
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment