I am including pagination on my blog page, its not quite working.
I have 5 test posts in total, showing the first 3 posts on the main blog page.
You can navigate to page 2 for the remaining 2 posts which works ok, but i'm losing my 'info' and 'about' pages in the main navigation which are children of the home page.
Also the pagination links are showing 6 pages, which are empty after page 2. (too many pagination links)
Here is the link to the blog page with pagination links at the bottom:
http://www.hoof.net.au/pwire/blog/
This is the pagination code in on my blog page template:
<?php
$results = $pages->find("id>1, limit=10, sort=date");
$pagination = $results->renderPager();
echo $pagination;
?>
I tried a few things after reading the pagination info page which mostly resulted in no pagination links at all.
regards,
Alex













