Sometimes you want to show future posts, likely when you have posts that are events.
<?php
// ———— added for events to show future
if(is_category(‘events’))
query_posts($query_string . ‘&order=ASC&post_status=future’);while (have_posts()) : the_post();
if(is_category(‘events’)) {
if(strtotime($post->post_date) < time())
continue;
}
?>