Hi.
I need to add categories and tag support to nooz coverage post type too.
I tried to add support to cateories in custom post types
'taxonomies
=> array(‘category’,’post_tag’)`
and then I add to functions.php
add_action('init', 'add_category_tags_to_cpt');
function add_category_tags_to_cpt() {
register_taxonomy_for_object_type('category', 'nooz_coverage');
register_taxonomy_for_object_type('post_tag', 'nooz_coverage');
}
Now there are the Categories and Tags meta boxes but if I go to mydomain.ext/categories/coverage-category-name no post is displayed
What’s wrong? What can I do?
Thanks in advance
-
This reply was modified 7 years, 2 months ago by
fortarrigo.