Scheduling your posts in WordPress is a great feature. Create a sense of suspense for your readers by allowing them to see the title’s of upcoming posts. Paste this anywhere in your theme files.
<?php $my_query = new WP_Query('post_status=future&order=DESC&showposts=5'); if ($my_query->have_posts()) { while ($my_query->have_posts()) : $my_query->the_post(); ?> <?php the_title(); ?> <?php endwhile; } ?>

