LP Testimonial Query
// WP_Query arguments $args = array( 'post_type' => array( 'tft_testimonial' ), 'tax_query' => array( array( 'taxonomy' => 'tft_testimonial_category', 'terms' => 'featured', ), ), ); // The Query $the_query = new WP_Query( $args );