$post_list = get_posts('numberposts=50000&order=ASC&orderby=title');
I am trying to make sure I don;t post duplicates, but when I check the titles it does not seem to return scheduled posts. Is there a different function to get scheduled posts?
$post_list = get_posts('numberposts=50000&order=ASC&orderby=title');
I am trying to make sure I don;t post duplicates, but when I check the titles it does not seem to return scheduled posts. Is there a different function to get scheduled posts?
Might use the post_status=future,publish argument.
Thanks a ton, Michael. Works like a charm!
You must log in to post.