wordpress pagination with query posts, Mostly people use query_posts function for fetching posts. But most of all people face issue with pagination.
wordpress pagination with query posts
Just use following code for pagination. It is simple and easy.
02 | $paged = (get_query_var( 'paged' )) ? get_query_var( 'paged' ) : 1; |
03 | query_posts( 'post_type=documents&paged=' . $paged ); |
04 | query_posts( 'post_type=post&paged=' . $paged ); |
05 | if (have_posts()) : while (have_posts()) : the_post(); ?> |
07 | <a href= "<?php the_permalink(); ?>" title= "<?php the_title(); ?>" ><?php the_title(); ?></a> |
08 | <?php the_excerpt(); ?> |
11 | <div id= "nav-below" class = "navigation" > |
12 | <div class = "nav-previous" ><?php next_posts_link( __( '<span class="meta-nav">←</span> Older posts' , 'twentyten' ) ); ?></div> |
13 | <div class = "nav-next" ><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">→</span>' , 'twentyten' ) ); ?></div> |
14 | </div><!-- #nav-below --> |
15 | <?php endif ; wp_reset_query(); ?> |
wordpress pagination with query_posts
To use the built-in pagination of WP make sense!
Pagination plugins usualy works with that. I prefer to display pages numbers with wp-page-navi.