Query Starclips 1
FH
// WP_Query arguments $args = array( 'post_type' => array( 'vimeo-video', ' test-cpt-video' ), 'post_status' => array( 'publish' ), 'nopaging' => true, 'order' => 'DESC', 'orderby' => 'date', ); // The Query $query_starclip = new WP_Query( $args ); // The Loop if ( $query_starclip->have_posts() ) { while ( $query_starclip->have_posts() ) { $query_starclip->the_post(); // do something } } else { // no posts found } // Restore original Post Data wp_reset_postdata();