I recently came through a blog which shown its future posts on a page , which can help their visitors to know about the upcoming events. Its like a nice feature, is there a plugin where in we can show the scheduled posts?
How do Show Future Posts in Wordpress
(4 posts) (3 voices)-
Posted 1 year ago #
-
This is post stamp which is available in your wp admin panel on the sidebar while writing the post..
http://www.maxblogpress.com/wp-content/uploads/2007/11/time_stamp.jpg
Posted 1 year ago # -
@Rockstar he has asked for displaying all the future posts on the wordpress blog to your visitors. Its possible using this code -
<?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();
$do_not_duplicate = $post->ID; ?>- <?php the_title(); ?>
<?php endwhile;
}
?>Posted 1 year ago # -
:? Will be careful from next time before answering anything!
Posted 1 year ago #
Reply
You must log in to post.