Broken pagination, need help figuring out why!
First, if you want to load posts outside of the default query for the page, use WP_Query. Calling query_posts should be done only to modify parameters of the default query. The pagination issue stems from calling query_posts, you’re overwriting the page parameter (and all other parameters) by calling it in your template. If you want … Read more