Scheduling posts is a a good thing to do if you have lots of information to share or if you run a membership site and you want to drip content out to them.
However, you want to give your members a sneak peek of what’s coming up – to increase the anticipation. Here’s a simple function that you can modify to do this:
function showupcomingposts() {$args=array(
‘post_type’=>’post’,
‘post_status’=>’future’,
‘posts_per_page’ => 10
);
$wp_query= null;
$wp_query = new WP_Query();
$wp_query->query($args);
if ($wp_query->have_posts()) : while($wp_query->have_posts()) : $wp_query->the_post();
echo ‘<div id=”contentmain”>’;
echo ‘<h2>the_title();</h2>’;
the_excerpt();
echo ‘</div>’;
endwhile; endif;
}
?>
I haven’t tested it – and it will require tweaking to present the output on your site, but it’s a good start.
Enjoy.

