Created
November 13, 2013 04:41
-
-
Save joshuadavidnelson/7443811 to your computer and use it in GitHub Desktop.
Remove category and tag taxonomies. Useful if you're not using the blog functionality of WordPress, including the taxonomies. Be sure to uncomment the other line if you're using Genesis to avoid errors.
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
| <?php | |
| /** | |
| * | |
| * Remove default taxonomies | |
| * | |
| * @link http://w4dev.com/wp/remove-taxonomy/ | |
| * | |
| */ | |
| add_action( 'init', 'unregister_taxonomy'); | |
| //remove_action( 'genesis_entry_footer', 'genesis_post_meta' ); // uncomment this if you're using Genesis to avoid errors | |
| function unregister_taxonomy(){ | |
| global $wp_taxonomies; | |
| $taxonomies = array( 'category', 'post_tag' ); | |
| foreach( $taxonomies as $taxonomy ) { | |
| 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
Weird long-term follow-up, but I had a similar issue with being unable to delete Media Items in 6.2.x because
wp_delete_object_term_relationships( $post_id, array( 'category', 'post_tag' ) );is hardcoded inwp-includes/post.phpand causes an error.So the
register_taxonomy('', nobody)solution proposed in the first comment is the way to go.