Hi,
Is there a way to print the latest thumbnails of the latest images.
I've tried using printlatestimages, but when I specify 50 for the length and width, it doesn't seem to work.
I've tried using printlatestimages, but when I specify 50 for the length and width
Not sure I understand. If you use printLatestImages(5) will print the latest 5 images using the default thumb sizes defined for this plugin (85x85). To use a specific custom size you need to set: printLatestImages(5, '', false, false,true , 50, '', 50, 50, true)
This will will print the latest 5 images with out title, date with a description truncated to 50 without rating/hitcount, as a 50x50 cropped thumb).
If you want to use complete custom output you need to build your own using the getLatestImages() variant which just returns image objects.
If you want a printPagedThumbsNav() for all images of all albums the easiest way is probably to use a dynamic album containing all images. Otherwise some more coding would be necessary.
Comments
Basically a printPagedThumbsNav() function but not limited to the specific album.
Not sure I understand. If you use
printLatestImages(5)
will print the latest 5 images using the default thumb sizes defined for this plugin (85x85). To use a specific custom size you need to set:printLatestImages(5, '', false, false,true , 50, '', 50, 50, true)
This will will print the latest 5 images with out title, date with a description truncated to 50 without rating/hitcount, as a 50x50 cropped thumb).
If you want to use complete custom output you need to build your own using the
getLatestImages()
variant which just returns image objects.If you want a
printPagedThumbsNav()
for all images of all albums the easiest way is probably to use a dynamic album containing all images. Otherwise some more coding would be necessary.