Hi guys
I was using this code on a subpage and the pagination worked fine:
<?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
query_posts('category_name=Uncategorized&posts_per_page=10&paged=' . $paged); ?>
<?php if(function_exists('wp_paginate')) {
wp_paginate();
} ?>
<?php while (have_posts()) : the_post(); ?>
Then I set the subpage (http://www.ratethishunk.com/latest) to homepage (http://www.ratethishunk.com) through the WordPress reading settings ("Frontpage displays static page"). On the homepage the paginator displays the same posts on all pages. So e.g. http://www.ratethishunk.com/page/2/ displays the same posts as http://www.ratethishunk.com/page/3/.
Any help would be appreciated. Thank you!
Note: this is not the same problem as I posted last month: http://wordpress.org/support/topic/recent-posts-with-paginator-problem-help?replies=2