Next Page and Previous Page and Category Exclude problem
-
I seem to be having some sort of s
tupid issue with the next and previous page links for a category page.. It also won't let me exclude a category.
Any help?
The code for the page is below:
<?php get_header(); ?> <div class="mini_portfolio_item_category"> <div class="block_inside"> <?php query_posts('posts_per_page=5'); ?> <?php while (have_posts()) : the_post(); ?> <h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3> <br /> <?php the_excerpt(); ?> <?php endwhile; ?> </div> <div class="navigation"> <?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } else { ?> <div class="right"><?php next_posts_link('Next Page »') ?></div> <div class="left"><?php previous_posts_link('« Previous Page') ?></div> <?php } ?> </div> </div> </div> <br /> </div> </div> <?php get_footer(); ?>
Thanks in advance
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Next Page and Previous Page and Category Exclude problem’ is closed to new replies.