custom-post-type-query
// WP_Query arguments $args = array( 'post_type' => array( 'filmclip_type' ), 'post_status' => array( 'published' ), ); // The Query $query_filmclips = new WP_Query( $args ); // The Loop if ( $query_filmclips->have_posts() ) { while ( $query_filmclips->have_posts() ) { $query_filmclips->the_post(); // do something } } else { // no posts found } // Restore original Post Data wp_reset_postdata();