Find a Question:
How do Show Future Posts in WordPress
Jul
20
2010
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?
Answer #2
@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;
}
?>
GD Star Rating
loading...
loading...
Answer this Question
You must be Logged In to post an Answer.
Not a member yet? Sign Up Now »
Star Points Scale
Earn points for Asking and Answering Questions!
[1 - 25
[26 - 50
[51 - 500
[501 - 5000
[5001 - 25000
[25001+
Answer #1
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
loading...