If you want to display your schedule posts in a list which can often help readers to give them heads up about what you’re going to publish in upcoming days.
This can also help you to get new visitors and some more RSS subscribers. It’s not very hard to implement this functionality as it seems.
You just need to simply paste this code where you’d like your future posts to be displayed.
<?<a title="See also WordPress - Control When Your Posts are Available via RSS" href="http://www.whileifblog.com/2012/03/19/wordpress-control-when-your-posts-are-available-via-rss/">php</a> query_posts('showposts=10&post_status=future'); ?>
<?<a title="See also WordPress - Remove unused shortcodes in your posts" href="http://www.whileifblog.com/2010/09/19/wordpress-remove-unused-shortcodes-in-your-posts/">php</a> if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div>
<p class=""><b><?<a title="See also WordPress - Create Your Own Popular Posts content in the sidebar" href="http://www.whileifblog.com/2011/01/09/wordpress-create-your-own-popular-posts-content-in-the-sidebar/">php</a> the_title(); ?></b>
<?<a title="See also WordPress - Batch Delete Post Revisions" href="http://www.whileifblog.com/2010/09/22/wordpress-batch-delete-post-revisions/">php</a> edit_post_link('e',' (',')'); ?>
<span><?<a title="See also WordPress - Programmatically Creating Posts" href="http://www.whileifblog.com/2010/09/20/wordpress-programmatically-creating-posts/">php</a> the_time('j. F Y'); ?></span>
</p></div>
<?<a title="See also WordPress - Display AdSense Ads to Search Engines Visitors Only" href="http://www.whileifblog.com/2011/03/21/wordpress-display-adsense-ads-to-search-engines-visitors-only/">php</a> endwhile; else: ?>
No future events scheduled.
<?<a title="See also WordPress - Dynamic Copyright Date in Footer" href="http://www.whileifblog.com/2012/03/11/wordpress-dynamic-copyright-date-in-footer/">php</a> endif; ?>
