Created
August 23, 2016 15:27
-
-
Save ingozoell/a377aeb583c6e3b5663c99076ebad8cf to your computer and use it in GitHub Desktop.
Remove Custom Taxonomies WP Child-Theme
http://wordpress.stackexchange.com/questions/48017/remove-tag-from-theme-support
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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