I'd like my archive.php page's daily view (is_day) to display scheduled posts (post_status=future). For example, if I go to mysite.com/2011/05/20 I would see all posts scheduled to appear on May 20.
The archive page's loop starts with:
if ( have_posts() )
the_post();
and ends with:
rewind_posts();
get_template_part( 'loop', 'archive' );
Do I need to make a second loop, or can I modify this single loop to show scheduled posts? If so, how? Thank you.