Skip to content

Instantly share code, notes, and snippets.

@mrw4n
Created October 23, 2012 15:17
Show Gist options
  • Save mrw4n/3939356 to your computer and use it in GitHub Desktop.
Save mrw4n/3939356 to your computer and use it in GitHub Desktop.
Show future posts in wordpress single pages
function allow_future_posts($posts) {
global $wp_query, $wpdb;
if (is_single() && $wp_query->post_count == 0) {
$posts = $wpdb->get_results($wp_query->request);
}
return $posts;
}
add_filter('the_posts', 'allow_future_posts');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment