In all of my editing of the template to fit my design, I think I have accidently edited out the page links. 1, 2 of the album that is usually displayed in the bottom. Opps.... So if there is more than 9 which is want I want on the first page of album - I don't get to see the rest... Possibly someone could help me add these in? Live site: http://www.manethreadzshowwear.com/plogger/?level=collection&id=2
Album.php as follows: <?php plogger_get_header(); print '<div id="thumbnail_container">'; if (plogger_has_pictures()) { print '<div id="overlay"> </div>'; print '<ul class="slides">';
while(plogger_has_pictures()) {
plogger_load_picture();
// display thumbnails within album // generate XHTML with thumbnail and link to picture view. // find thumbnail width $thumb_info = plogger_get_thumbnail_info(); $thumb_width = $thumb_info[0]; // The width of the image. It is integer data type. $li_width = $thumb_width + 10; // account for padding/border width
In case you get stymied, the thing that makes the page numbers is the following chunk of php code, which normally you'll find in the 'footer.php' file in your theme folder.
It doesn't need to go only in the footer, though -- I also added it to the 'header.php' file so I've got page numbers at both top and bottom.
Here's the piece you're looking for (I added the !<--pagination--> comment):