I am trying to use the query_posts function after a page item to get the 5 latest posts. query_posts doesn't seem to do anything, I only get the data for the page again. The $posts value does not change like it should.
I am trying to use the query_posts function after a page item to get the 5 latest posts. query_posts doesn't seem to do anything, I only get the data for the page again. The $posts value does not change like it should.
Resolved: need to use like this:
$posts = query_posts(...);
This topic has been closed to new replies.