I’m considering rebuilding a drupal site in wordpress and am still wrapping my head around the differences between the systems – particularly cck/fields and custom content types and the different ways to use taxonomy.
I would like to know if two custom content types can share one custom taxonomy. In drupal I can limit the posting of a particular content type to a group of users and then that posting can have taxonomy that is only shared with one or more other content types (but not all types).
Leaving the user aspect out which appears possible with role scoper, can you do this with wordpress? I’ve only seen custom content type with custom taxonomy but no way to share a given taxonomy between 2 or more custom content types without recreating it in two places or enabling it globally through categories/tags…
Thanks,
-Chad.
Sharing a taxonomy between CPTs
Simple said: Yes, they can.
How to share
You should always register custom taxonomies and post types to each other as early as possible.
Wrap your registration process in a function, hooked to the
init
hook at the default priority.It doesn’t matter if you use the 2nd argument for
register_taxonomy()
or if you useregister_taxonomy_for_object_type()
, as both do the same: They take the$GLOBALS['wp_taxonomies']
array and assign it the post type object (type).Important note
Just make sure that you register the CT and the CPT to each other at when registering them. Else you won’t have access to that interconnection during query hooks.
I was able to achieve this easily by passing array of all the Custom post types I want to share the taxonomy, So my code looked like this:
From the Codex:
When you register your post type you assign the taxonomies it supports, or use
register_taxonomy_for_object_type()
at some other point to add the taxonomy to the post type.You can assign a taxonomy to as many post types as you like. Taxonomies are not tied to a particular post type.