Displaying Future/Scheduled Posts
-
I am using this code:
<?php $now = current_time('mysql'); $future_posts = $wpdb->get_results("SELECT * FROM $wpdb->posts WHERE post_date > '$now' ORDER BY post_date ASC"); if($future_posts) : foreach($future_posts as $post) : setup_postdata($post); ?>
from this post: https://www.ads-software.com/support/topic/displaying-futurescheduled-posts
this works great and displays all future posts… I want to limit the posts to a set number such as 8. How would i go about this?
Viewing 13 replies - 1 through 13 (of 13 total)
Viewing 13 replies - 1 through 13 (of 13 total)
- The topic ‘Displaying Future/Scheduled Posts’ is closed to new replies.