1<?php
2$args = array(
3 'post_type' => 'post',
4 'post_status' => 'future'
5);
6$scheduled = new WP_Query( $args );
7
8if ( $scheduled->have_posts() ) :
9?>
10 <?php while( $scheduled->have_posts() ) : $scheduled->the_post() ?>
11 <!-- Display Post Here -->
12 <?php endwhile ?>
13<?php else : ?>
14 <!-- Content If No Posts -->
15<?php endif ?>