Adding Categories to a WordPress Custom Post Type?

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');

Leave a Comment