Is there a way to use regular categories with custom post types? It seems like there is better functionality and options with regular categories (such as permalink options, etc.).
Leave a Reply
You must be logged in to post a comment.
Is there a way to use regular categories with custom post types? It seems like there is better functionality and options with regular categories (such as permalink options, etc.).
You must be logged in to post a comment.
No problem, the categories and tags are also registered as taxonomies that you can pass to the
taxonomies
argument when you callregister_post_type()
. Categories arecategory
and tags arepost_tag
. You can also do this later withregister_taxonomy_for_object_type()
: