The advanced-taxonomy-queries tag has no wiki summary.
1
vote
1answer
2k views
How to pass URL parameters for advanced taxonomy queries with multiple terms for one custom taxonomy
This answer provides the code for a query that returns an OR match on a taxonomy term:
global $query_string;
$args['tax_query'] = array(
array(
'taxonomy' => 'status'
,'terms' ...
0
votes
1answer
125 views
How to reduce the database query-es
Hy, i make a slide for news, the question is how can i reduce the dathabase queries...ore how can i compress this code...
http://s16.postimage.org/bswe0vrph/queries.jpg
<div id="featured" >
...
3
votes
2answers
600 views
Modify Taxonomy pages to exclude items in child taxonomies
I found this question:
Theres a way to use $query->set('tax_query' in pre_get_posts filter?
which seems to indicate that yes, you can alter the taxonomy query on taxonomy archives via ...
0
votes
1answer
373 views
taxonomy query to output slugs instead IDs
So I got a custom search form with three dropdowns containing three different custom taxonomies.
The problem is, I'd need the taxonomy slugs in the address for the search to fuction properly, because ...