
The following code can be placed in your sidebar on within any template.
query('showposts=5&post_status=future&order=ASC');
if ($futurePosts->have_posts()) : while ($futurePosts->have_posts()) :
?>
- No upcoming events.
If you want to only display future posts from a specific category, you can add a cat=$id to the query like so:
$futurePosts->query('showposts=5&post_status=future&order=ASC&cat=12');
Be sure to change the “12” to the category ID.


