Favorite list show future posts
-
First of all this plugin is really great – thanks a lot!
I have made a customised list of favorites using this:
$favorites_query = new WP_Query(array(
‘post_type’ => array( ‘movies’, ‘shows’ ),
‘posts_per_page’ => -1,
‘post_status’ => array( ‘publish’, ‘future’ ),
‘ignore_sticky_posts’ => true,
‘post__in’ => $favorites,
‘paged’ => $pagedbut the listing won’t show any future posts! Only published. I have made a page with future posts and here the button shows “unfavourite” after click and the counter tells one more favourite has been added.. so the function works.. any suggestions why the favorite-listing won’t show future posts?
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Favorite list show future posts’ is closed to new replies.