Reply To: Problem with pagination
I’ve changed the loop in template-quote-posts.php
Replace line 9 and 10 with
global $wp_query; $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; $args = array( 'paged' => $paged,
Same changes made to other template-bloglist-* files.
It should work now. Let me know if there’s any problems.
Thanks