| Developer |
valeriosza
aliascomunicacao |
|---|---|
| Update Time | Feb. 6, 2015, 7:14 a.m. |
| Donation URL: | donation |
| PHP Version: | 1.5 + |
| WordPress Version: | 4.1 |
| Copyright: | GPLv2 or later |
| Copyright URL: | Copyright Information |
On your template, just simply add the string 'post_status=future' to your WP_Query Example: WP_Query('post_status=future'); $args = array( 'post_type' => 'post_type', 'post_status' => array( 'publish', 'future' ) ); $loop = new WP_Query( $args ); while ( $loop->have_posts() ) : $loop->the_post(); Read More in http://codex.wordpress.org/Class_Reference/WP_Query/
On your page or post using [backfuture] for show future posts.
Parameters currently accepted in shortcode
post_type = Default: postposts_per_page = Default: Allorderby = Default: menu_orderthumbsize = Default: thumbnail[backfuture post_type="movie" posts_per_page="5" thumbsize="large"]
This displays all future and published posts.