Wordpress - List Scheduled Posts
If you ever wanted to show you readers posts that are scheduled to be published, here's how to do it.
<?php
$result = new WP_Query('post_status=future&order=DESC&showposts=5');
if ($result->have_posts()) {
while ($result->have_posts()) : $result->the_post(); ?>
<?php the_title(); ?>
<?php endwhile;
}
?>
Awesome! very helpful....
Awesome! very helpful.
Post new comment