I have a custom taxonomy (I’ll call ‘issues’ in this example) registered as such: register_taxonomy('issues',array('post', 'pieces'), array( ... 'rewrite' => array( 'slug' => 'issues', 'with_front' => true, ), ......
I’ve been combing this site and google for the answer and I’ve come up completely empty. Basically I want to do exactly what this post asks, but I need...
I have four CPT and several shared Custom Taxonomies for all. I need to retrieve and output the content of a term (let’s say “environmental-crisis” of the shared taxonomy...
I have a page called “Developments” and I want to list all the Project posts by the custom tax Project Type using the page title as the term. This...
Posts on my site describe future events, with the event date recorded in a custom field in Unix time. Generally, only upcoming events are relevant to visitors. As such,...
Given that a Custom Post Type (CPT) has properties geared towards a UI on the front end and a taxonomy is a data object which allows for easy association...
How can I get the bottom-most level terms for a custom taxonomy? Taxonomy Hierarchy example, Custom Taxonomy: “product-category” Top Level Terms -> Second Level Terms -> Third Level Terms...
I’m hoping someone can help me fill in the gaps in my understanding of page templates and query vars: I’ve registered a custom taxonomy ‘stream’, and have set up...
I have created a theme template for a custom taxonomy. The HTML title tag has the yoast title that I set when editing the taxonomy. I want to also...
When saving/updating a custom post type in the Admin Panel I’m hooking into save_post_{$post->post_type} and adding custom taxonomy terms from a linked post using wp_set_object_terms. The terms are added...