Tell me more ×
WordPress Answers is a question and answer site for WordPress developers and administrators. It's 100% free, no registration required.

Is it possible to add categories to a Custom Post Type in WordPress?

share|improve this question

1 Answer

Put the following in your theme's functions.php file (changing my-custom-post-type to be whatever your Custom Post Type is, of course):

register_taxonomy_for_object_type('category','my-custom-post-type');

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.