Wordpress has a feature where you can write a post today, and set it to publish at some date and time in the future.
There is a way to display the upcoming posts in Wordpress, and a great way to use this feature is to get RSS Subscribers.
If people can see the subject of the post and there is a link encouraging you to subscribe via RSS so they don’t miss anything then you can drive up your RSS numbers significantly.
here is the code you need:
<?php query_posts(’showposts=10&post_status=future’); ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<h4><?php the_title(); ?></h4>
<span><?php the_time(’j. F Y’); ?></span></p>
<?php endwhile;
else: ?><p>No future events scheduled.</p>
<?php endif; ?>
This can be put anywhere in your template, but you could easily integrate it in the header of the template, right where your RSS subscribe button is.

{ 0 comments }

