ZenphotoCMS Forum
4 thumbs under Albumn on main page ? - 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: 4 thumbs under Albumn on main page ? (/thread-2007.html)



4 thumbs under Albumn on main page ? - farhan - 2008-01-01

Hello,

Is there any way to show latest thumbs from a gallery or it's subgallery on main page ? with the album ?

Like

Album Name
4 Thumbs from that Album ( Random or Latest)

Album Name 2
4 Thumbs from that Album ( Random or Latest)

and so on ?

Thanks




4 thumbs under Albumn on main page ? - sbillard - 2008-01-01

You can get a array of subalbum names for any album by using the function $names = $album->getImages(0, 0,'ID'); From this you can select four and create album objects of them. $img1= new Image($album, $names[$n]); Then you can do what you want with the album. The last four would be the latest.