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

I've registered a custom post type called "Work" with register_post_type and registered a custom taxonomy called "Clients" and added array('category', 'post_tag', 'client', 'page-attributes') to the taxonomies for the Work type. They all show up in the sidebar menu. However, when I click "Categories" or "Clients" in the sidebar, it opens the "Posts" menu with "Categories" or nothing selected respectively. I want to have Work > Clients and Work > Categories selected in the menu. How would this be accomplished?

share|improve this question

closed as too localized by toscho Jul 19 '12 at 23:45

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

Figured this out. Setting the post_type to 'public' in the register_post_type options makes the menu select properly.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.