querytry
// WP_Query arguments $args = array( 'post_type' => array( 'product' ), 'post_status' => array( 'published' ), 'nopaging' => false, 'posts_per_page' => '4', 'order' => 'DESC', 'orderby' => 'rand', 'tax_query' => array( 'relation' => 'AND', array( 'taxonomy' => 'post_tag', 'terms' => array( 'acid', 'acid2' ), 'field' => 'slug', 'operator' => 'IN', 'include_children' => true, ), ), ); // The Query $query = new WP_Query( $args );