Displaying Future Posts

By Forrest Smith - Drempd.com

To display future posts, just include the 'post_status' as part of the query:

$args = array( 
    'post_status' => array('publish','future'),
    'post_type' =>  'blog',
    'posts_per_page' => 21,
    'paged' => $paged
   );