Trouble with WP_Query
-
Hi!
I have a problem with WP_Query loop. I just want to query 8 latest posts without pagination and any other filters, but wordpress returns to me ALL posts, not only 8.My WP query
$loop2 = new WP_Query(array('post_type' => 'post', 'posts_per_page' => 8, 'post_status'=>'publish'));
But if I`d try to add a category filter and my query works nice
$loop2 = new WP_Query(array('post_type' => 'post', 'posts_per_page' => 8, 'post_status'=>'publish','cat'=>154));
but I won`t have any filters and I just want to display 8 posts from ALL categories.
Viewing 8 replies - 1 through 8 (of 8 total)
Viewing 8 replies - 1 through 8 (of 8 total)
- The topic ‘Trouble with WP_Query’ is closed to new replies.