ZenphotoCMS Forum
getPrevImageTitle() ? - Printable Version

+- ZenphotoCMS Forum (https://forum.zenphoto.org)
+-- Forum: Support (https://forum.zenphoto.org/forum-1.html)
+--- Forum: General support (https://forum.zenphoto.org/forum-4.html)
+--- Thread: getPrevImageTitle() ? (/thread-10279.html)



getPrevImageTitle() ? - hkdigit - 2012-08-07

Any function to get Prev / Next Image title?

Regards,
Chris Lee




getPrevImageTitle() ? - acrylian - 2012-08-07

You have to use the object model for this.




getPrevImageTitle() ? - hkdigit - 2012-08-15

Thanks acrylian, I use the following code to show Previous Image Title:

$PrevImage = $_zp_current_image->getPrevImage();
echo $PrevImage->getTitle();

Thanks again!