The Toolset Types does not picks up taxonomies not added through it.
-
Hi Beda,
This is a really very useful plugin. I can create a lot of custom post types with it with special fields. But I am facing one problem: how do I associate my custom post type with the custom taxonomy by bbpress.I created a custom post type, say article, and made it as a child to the bbpress post type called topic through the toolset types plugin. My goal is to create a post and link a parent topic (bbpress) with that post.
But there is only one problem, the taxonomies in toolset types only show the wordpress built-in taxonomies (categories and tags), but not topic-tag ( added by bbpress taxonomy). Due to this the topic-tag though shown associated in the custom types (types plugin) admin, does not show up in editing.
I tried this in my theme’s functions.php :
/* // * Adding the taxonomies for the Articles // */ // function add_taxonomy_for_articles() // { // echo("Adding taxonomy"); // register_taxonomy_for_object_type( 'topic-tag', 'custom-article' ); // } // add_action('init', 'add_taxonomy_for_articles');
but it still doesn’t add the taxonomy to the custom post type.
Please Advice.
- The topic ‘The Toolset Types does not picks up taxonomies not added through it.’ is closed to new replies.