Questions tagged [custom-taxonomy]

Custom criteria that allow categorization, identification, nomenclature, and classification of various entities in software.

Custom defined criteria that allow categorization, identification, nomenclature, and classification of various entities in software and programming.

Custom taxonomies are commonly used in WordPress and Drupal as a methodology to group and organize content entries.

1187 questions
0
votes
1 answer

Get the Taxonomy-name instead Taxonomy-slug in Advanced Search Form on Wordpress

i'm working on this tutorial called "How to Create an Advanced Search Form for WordPress" (http://fearlessflyer.com/2012/10/how-to-create-an-advanced-search-form-for-wordpress/) and it works perfect. But i have a problem trying to show the…
Javi Gil
  • 1
  • 2
0
votes
2 answers

Wordpress wp_query post_type and taxonomy not works

I'm trying to get posts, with custom post type and taxonomy. I tried with this codes: $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; $args = array( 'post_type' => 'specification', 'tax_query' => array( array( ' …
Zulfugar Ismayilzadeh
  • 2,643
  • 3
  • 16
  • 26
0
votes
0 answers

Displaying or Hiding Metadata on Page from WP Dashboard

I have a custom post type called "Celeb". This CPT contains two Taxonomy terms as "Men" and "Women".Each Post has two metadata as "Name" and "Age". Now I would Like to add a "Visibility" checkbox to WordPress CPanel to enable or disabe displaying…
Mona Coder
  • 6,212
  • 18
  • 66
  • 128
0
votes
1 answer

Wordpress Front End for Custom Taxonomy

This is Wordpress Front end Form for categories where people choose categories to submit listing My Custom Taxonomy is 'location' but below code shows custom taxonomy of 'listcat' how can i edit it to show 'location' taxonomy?
M Ali Salim
  • 109
  • 2
  • 14
0
votes
1 answer

get_the_term_list only gets one term

I have a custom post type called 'Jobs'. The custom post type has a custom taxonomy, called 'locations'. On the jobs page, is to display the locations to which is job posting corresponds to. I.e one job might have positions in Shanghai and Beijing…
Stepan Parunashvili
  • 2,627
  • 5
  • 30
  • 51
0
votes
1 answer

Create a menu that replicates my custom taxonomy hierarchy in wordpress

I have a custom post type (“products”) with an associated custom taxonomy (“product_type”). So when I create a product, I choose in which category it goes. The taxonomy is hierarchical and it goes like this: Category 1 Sub-Category 1.1 …
gprego
  • 75
  • 2
  • 10
0
votes
1 answer

Wordpress show posts from children terms of a taxonomy term

I have a a custom taxonomy called "products_cat" this custom taxonomy has different terms as parent categories: "Electronics", "Computer", "Home Appliances", etc. And then under each of those terms I have more sub-terms like under "Electronics" for…
Jaypee
  • 1,272
  • 5
  • 17
  • 37
0
votes
1 answer

Associating a custom post type with a custom (user) taxonomy

I'm trying to create a "team" page template that features several types of information: a series a match reports (filtered by the team name- the match reports are custom post types with various post meta) future matches also filtered by team name…
mantis
  • 215
  • 1
  • 4
  • 17
0
votes
1 answer

wordpress : identify user way to an item

is it possible to track the route that the user took to get to a page ? say that i have a post that have 2 different taxonomies taxonomy 1 = make taxonomy 2 = color i want to create a different layout for each route this is my current…
lior r
  • 2,220
  • 7
  • 43
  • 80
0
votes
1 answer

Wordpress prefix dynamic value to custom taxonomy url

I have two custom taxonomies 'edition' and 'features' I'd like wordpress to allow me to prefix the slug of features with a value from editions. For example if i go here; mysite.com/asia/features/interviews/ Wordpress would translate the url…
joemcc
  • 1
  • 3
0
votes
3 answers

Custom Taxonomy Links For Custom Post Types Not Working

I have set up a custom post type and a custom taxonomy. Then I am displaying the list of taxonomies as a set of links so that if someone clicks on that link, it should bring up all the posts under that taxonomy. Currently this is not working. It…
Johnny
  • 553
  • 1
  • 10
  • 27
0
votes
0 answers

Meta Boxes on pages with a certain taxonomy

Using the Meta Boxes plugin, is there a way to restrict the meta box to only show on a page with a specific taxonomy? $meta_boxes[] = array( 'id' => 'sponsor_list', 'title' => 'Sponsors', 'pages' => array(…
Carey Estes
  • 1,534
  • 2
  • 31
  • 59
0
votes
2 answers

How to Separate Wordpress Query Result by Taxonomy with Heading?

I have a wordpress custom post type of "awards", which has a custom taxonomy of "awardyear." I'm trying to write a query that will list them all out, but group them by year, and have the year in a heading. For example all of the awards from the year…
TripsLeft
  • 539
  • 8
  • 24
0
votes
1 answer

Wordpress. Rewrite url when on custom taxonomy

It's a wordpress site. I am using a plugin called media tags. This plugin create a custom taxonomy called 'media tags' to display media that has been tagged. The url for these pages are currently domain/blog/media-tags/results I would like to remove…
0
votes
1 answer

Querying custom post type with two criteria

Thanks in advance for any help. I've created a page that lists the taxonomy of a custom-post-type. The issue I'm running into is the page that links from this listing should only pull the category and a placement code (in the example that's…