I'm still stuck on this issue..
The pagination on my WordPress blog is not working - http://www.example.com/news
When you click a different page number it updates the URL (and page title) correctly but it does not show different posts.
Ive tried:
Nothing has worked for me.
I've seen many solutions for a custom query, but I'm using the posts page that you set in Settings>Reading>Posts Page so I did not write any code to display the posts on this page.
UPDATE: I have not found the solution yet. I know I can do it by writing my own query but I want to stick with the default WP blog.
Check your WP loop in the category.php file (aka archive.php). It must contain the following:
if (have_posts()) : while (have_posts()) : the_post();
and finished with:
endwhile; endif;