[Plugin: WP-Paginate] 404 error
-
Wp-paginate displays the pagination if there are more than 5 post in the category, however if you click to go to second page you get a 404.
This code was working previously and I’ve not changed anything in the category template file.
Last week I had to do a fresh install of wordpress due to my host server going down (nice!) could i have missed something when i reinstalled wp?
<?php query_posts(‘category_name=blue&posts_per_page=5&paged=’.$paged); ?>
<?php if(function_exists(‘wp_paginate’)) {
wp_paginate();
} ?>
<?php while (have_posts()) : the_post(); ?>
<?php the_excerpt(); ?>
<?php endwhile; ?></div>dan
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘[Plugin: WP-Paginate] 404 error’ is closed to new replies.