Pagination
-
I am having trouble with pagination. First of all, I know there are several plugins out there, but I have a custom display, so I do not want to use one.
If I use any nice permalink structure, my pagination does not work. My home page displays all of my posts and paginates them. This is the code I have at the top of my home page just before the loop.
if($paged == 0) { $paged = 1; }
query_posts(‘paged=’ . $paged . ‘&showposts=1&cat=-1’);Then at the bottom of the page I have:
<?php next_posts_link( ‘<img src=”myPrevImage” />’); ?>
<span><?php echo $paged . ” OF ” . $max_pages; ?></span>
<?php next_posts_link( ‘<img src=”myNextImage” />’); ?>If you notice, I am trying to display page 1 of 10 for example. How do I calculate or get the max number of pages?
- The topic ‘Pagination’ is closed to new replies.