Query Posts Pagination Problem Wordpress


/ Published in: PHP
Save to your folder(s)

Use this to fix Pagination Problem on query posts page. This will fix the problem where clicking on the next page keeps showing same posts


Copy this code and paste it in your HTML
  1. <?php if (have_posts()) : ?>
  2. <?php query_posts("category_name=somecat"); ?>
  3. <?php while (have_posts()) : the_post(); ?>
  4.  
  5. replace with
  6.  
  7. <?php if (have_posts()) : ?>
  8. <?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts("category_name=somecat&paged=$paged"); ?>
  9. <?php while (have_posts()) : the_post(); ?>

URL: http://stylizedweb.com/2008/08/13/query_posts-pagination-problem/

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.