Is there a way to display posts, scheduled for the future?
I want to use the published data as an event date and time, which is obviously in the future. I still would like to use these posts for a loop, and for single pages.
2 Answers
$args = array(
'post_status' => "future",
'order_by' => 'date',
'order' => 'ASC'
);
$yourLoop = new WP_Query($args);