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 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]); | |
} | |
} |
Source: https://gist.github.com/joshuadavidnelson/7443811
Tags: Categories, Genesis, Tags, Taxonomy