Today I needed to change the arguments on a custom taxonomy that was already registered by a third party plugin. Specifically I wanted to set the show_admin_column argument to...
I’m working on a member page where I use a custom post type with a custom taxonomy. My custom post type is called member and my custom taxonomy is...
I created a ‘forum’ taxonomy, using these rules: register_taxonomy( 'forum', array('topic'), array( 'public' => true, 'name' => _a('Forums'), 'singular_name' => _a('Forum'), 'show_ui' => true, 'show_in_nav_menus' => true, 'hierarchical' =>...
Is there any way to get only parent terms from custom taxonomy or category? 5 Yes, just pass in the parent parameter to get_terms when you call it, as...
Say I have the following taxonomy terms: Term 1 Term 1.1 Term 1.2 Term 2 Term 2.1 How can I get only posts that are assigned to Term 1...
Is there a simple or easy way to exclude all posts from a custom taxonomy in the loop? I’ve been looking high and low, and neither SE, SO or...
I have a custom post type called ‘episode’. Attached to ‘episode’ I have a custom taxonomy called ‘video_type’ that contains two terms: “bonus-footage” and “episode”; “episode” contains two child...
Ok, so I have registered a few custom post types and a few taxonomies. Now, for the life of me, I cannot figure out the code I need to...
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...
I’d like to build an advanced search form for a specific custom post type, having filters for the custom post types custom fields, custom taxonomies, and for a separate...