Skip to content

Instantly share code, notes, and snippets.

@ingozoell
Created August 23, 2016 15:27
Show Gist options
  • Save ingozoell/a377aeb583c6e3b5663c99076ebad8cf to your computer and use it in GitHub Desktop.
Save ingozoell/a377aeb583c6e3b5663c99076ebad8cf to your computer and use it in GitHub Desktop.
function remove_tags_status() {
global $wp_taxonomies;
$tax = 'status';
if( taxonomy_exists( $tax ) )
unset( $wp_taxonomies[$tax] );
}
add_action( 'init', 'remove_tags_status' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment