WordPress post remove categories taxonomy

function alter_taxonomy_for_post() {
unregister_taxonomy_for_object_type('category', 'post');
//register_taxonomy_for_object_type('custom_tax', 'post');
}
add_action('init', 'alter_taxonomy_for_post');

Leave a comment

Your email address will not be published. Required fields are marked *