Allow you show Future or Scheduled Post on Single Posts.
As of April 2026, Back to the Future is a WordPress future post plugin with 20 active installations and a 5/5 rating from 1 reviews. It has been downloaded 2.1K+ times in total. Requires WordPress 1.5+ and PHP false+. Available on WordPress.org since 2015. Last updated 11 years ago — may have compatibility concerns. Top alternative: Show Future Posts on Single Post.
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',
'posts_per_page' => '-99',
'post_status' => array( 'publish', 'future' )
);
$loop = new WP_Query( $args );
while ( $loop->have_posts() ) : $loop->the_post();
Read More in https://codex.wordpress.org/Class_Reference/WP_Query/
This displays all future and published posts.
Back to the Future is free software: you can redistribute it…
| WordPress | 1.5+ requiredTested up to 4.1.42 |
| PHP | false+ required |
Plugin data sourced from WordPress.org. Analysis and metrics by PluginSift.