custom taxonomy meta query
custom taxonomy meta query
// WP_Query arguments $args = array( 'post_type' => array( 'projects' ), 'tax_query' => array( 'relation' => 'AND', array( 'taxonomy' => 'projectcategory', 'terms' => 'irrigation', 'field' => 'slug', 'operator' => 'AND', ), ), 'meta_query' => array( 'relation' => 'AND', array( 'key' => 'project_type', 'value' => 'Main Projects', 'compare' => 'LIKE', 'type' => 'CHAR', ), ), ); // The Query $mainquery = new WP_Query( $args ); // The Loop if ( $mainquery->have_posts() ) { while ( $mainquery->have_posts() ) { $mainquery->the_post(); // do something } } else { // no posts found } // Restore original Post Data wp_reset_postdata();