How do you add categories to custom post types in WordPress?

I’d like to be able to have categories of a custom post type, how do you set this up?

update

Read More

I want to keep the default categories for regular blog posts, but a separate set of categories just CPT.

Related posts

Leave a Reply

3 comments

  1. You have to register a taxonomy using register_taxonomy or register_taxonomy_for_object_type. The you can use wp_insert_term to insert values for that taxonomy.