I have a page with the most rated posts.
I use WP-PostRatings and I use this code:
query_posts( array( 'meta_key' => 'ratings_average', 'orderby' => 'meta_value_num', 'order' => 'DESC' ) );
Is there a way to create pagination for pages?
I found something here Wordpress pagination with static pages , but it shows me in all pages, the newest posts, order by date (as in homepage)
Thank you!
To get pagination to work with
query_posts()
you need to add the$paged
variable to your query: