mmmm
// WP_Query arguments $args = array( 'post_type' => array( 'pwgallery' ), 'post_status' => array( 'Publish' ), 'nopaging' => true, ); // The Query $gallery_query = new WP_Query( $args ); // The Loop if ( $gallery_query->have_posts() ) { while ( $gallery_query->have_posts() ) { $gallery_query->the_post(); // do something } } else { // no posts found } // Restore original Post Data wp_reset_postdata();