Home › Forums › Back End › [Solved] Displaying Scheduled Posts with the Loop? › Re: [Solved] Displaying Scheduled Posts with the Loop?
March 24, 2010 at 7:27 pm
#72923
Participant
As usual, posting in a public forum causes me to find the solution in the next 20 minutes.
found this (http://www.wprecipes.com/how-to-list-scheduled-posts):
$my_query = new WP_Query(‘post_status=future&order=DESC&showposts=5’);
combining that with if current_user_can() should get me exactly what I need.