$schedule= new WP_Query( array( 'post_type' => 'schedule' ) ); if( $schedule->have_posts() ) { while ($schedule->have_posts()) { $schedule->the_post(); the_title( '

', '

' ); $temp_post = $post; $workshops = new WP_Query( array('post_type' => 'workshop') ); if( $workshop->have_posts() ) { echo ''; } $post = $temp_post; } }