Combine tax_query and meta_query in query_posts()
-
I try to get custom posts with predefined meta value.The query return nothing.
$args = array ( 'post_type' => 'item', 'nopaging' => true, 'tax_query' => array ( array ( 'taxonomy' => $taxonomy, 'field' => 'term_taxonomy_id', 'terms' => $term_id ) ), 'meta_query' => array( array( 'key' => 'from_import', 'value' => '1', ) ) ); $posts = query_posts( $args );
When I remove meta_query or tax_query it works fine. How I can combine it?
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Combine tax_query and meta_query in query_posts()’ is closed to new replies.