Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End [Solved] Displaying Scheduled Posts with the Loop? Re: [Solved] Displaying Scheduled Posts with the Loop?

#72923

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.