Thought I'd share two modifications that I made the zenlatest wordpress plugin:
1) use slimbox to display the image:
about line 189:
`a href="$imagepath" rel='lightbox[same]'>img src=$tempthumb /a
`
just added the rel='lightbox[same]' - adding the [same] lets you navigate through the images on the page
2) instead of displaying the most recently *taken* photos, display the most recently *added to the galleries*
change to this on about line 120:
$picquery = "SELECT `albumid`,`filename` FROM `zp_images` where albumid != $excludealbums order by `id` DESC limit 0,$showcount";
There I just changed "order by 'date'" to "order by 'id'"
See it in action here:
www.thomascrawfordphotography.com (still a work in progress)
Comments
I will incorporate your SQL change into the next release, and if you have any other modifications i will be happy to add them also if they can be of general interest.