Unregister Taxonomy

0.0/5
<?php
add_action( 'init', 'unregister_tags' );

function unregister_tags() {
		unregister_taxonomy_for_object_type( 
'product_cat', //The taxonomy to unregister
'services-cpt' //The post type to unregister the taxonomy on
);
}

Comments and reviews

{{ reviewsTotal }} Review
{{ reviewsTotal }} Reviews
{{ options.labels.newReviewButton }}
{{ userData.canReview.message }}

Description

Unregisters given taxonomy on given post type

Author

Tags