Allow mix of 'taxonomy' => 'foo', 'term' => 'bar' and 'foo2' => 'bar2'. Props filosofo. Fixes #15363
git-svn-id: http://svn.automattic.com/wordpress/trunk@16259 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
3a7d16a308
commit
e9952075ee
|
@ -1472,7 +1472,8 @@ class WP_Query extends WP_Object_Query {
|
||||||
'field' => 'slug',
|
'field' => 'slug',
|
||||||
'operator' => 'IN',
|
'operator' => 'IN',
|
||||||
);
|
);
|
||||||
} else {
|
}
|
||||||
|
|
||||||
foreach ( $GLOBALS['wp_taxonomies'] as $taxonomy => $t ) {
|
foreach ( $GLOBALS['wp_taxonomies'] as $taxonomy => $t ) {
|
||||||
if ( $t->query_var && !empty( $q[$t->query_var] ) ) {
|
if ( $t->query_var && !empty( $q[$t->query_var] ) ) {
|
||||||
$tax_query_defaults = array(
|
$tax_query_defaults = array(
|
||||||
|
@ -1501,7 +1502,6 @@ class WP_Query extends WP_Object_Query {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
// Category stuff
|
// Category stuff
|
||||||
if ( !empty($q['cat']) && '0' != $q['cat'] && !$this->is_singular ) {
|
if ( !empty($q['cat']) && '0' != $q['cat'] && !$this->is_singular ) {
|
||||||
|
|
Loading…
Reference in New Issue