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