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