Relationship between two taxonomies and a custom post type [closed]

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, visit the help center. Closed 9 years … Read more

“Reversable” and “Re-useable” Subcategories (or other taxonomic structure)

Hope you can help a WP newbie 🙂 It is my understanding (and please correct me if I’m wrong!) that I cannot use the same subcategory slug in multiple parent categories, i.e. this structure is impossible with WP’s category functionality: example.com/design/exotic/my-post/ example.com/travel/exotic/another-post/ My question is a two-parter: Are there any plugins or code I can … Read more

How can I add a meta-box to the posts editor containing all items of a custom taxonomy as checkbox?

I have a custom hierarchical taxonomy containing only two levels of items. First Level the title, second level items of the taxonomy. Is it possible to add a “meta box” to the posts editor of WordPress, so all elements in the second level are shown as checkboxes, first level as title and the author can … Read more

Importing data from spreadsheet into wordpress DB, along with custom taxonomies and their terms

I am importing a large DB from an Excel spreadsheet into a wordpress DB. I was going to do it manually by creating a new table but decided to import it into the existing wordpress framework as it will allow me to change information manually in the wordpress back end. I was importing all 2000 … Read more

How can I get WP to build a feed based on multiple taxonomy terms

Currently, the best way to get a feed generated for a single taxonomy term is by letting wordpress generate the content automatically: example.com/wordpress/feed?tax_slug=term_slug However, is there a built in way of being able to produce a feed using multiple terms from the same taxonomy? For example: example.com/wordpress/feed?tax_slug=term1,term2,term3&another_tax_slug=term4,term5 The idea is to use built in wordpress … Read more

Best way to programmatically link to multiple categories (union/intersection) [closed]

It’s difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center. Closed 9 years ago. This question assumes that you know about the … Read more

Add custom taxonomy under the category title

I’ve added a custom taxonomy to my product category page in the admin. I can call the custom field using the following: $queried_object = get_queried_object(); $t_id = $queried_object->term_id; $term_meta = get_option( “taxonomy_$t_id” ); echo $term_meta[‘custom_term_meta’]; It describes the category. For example, if I added a title for a particular product category named “Address Labels” I … Read more