The simpler media website CMS
Forum search only. You might also want to search on the main site's user guide.
Forum RSS
Visit the troubleshooting guide.
Visit the paid support page.
Your support helps pay for this server, and helps development of zenphoto. Thank you!
Visit the donations page
Comments
http://www.zenphoto.org/news/zenphotos-object-model-framework
Quick example to get the title of a subalbum within the loop:
`
$subalbs = $_zp_current_album->getAlbums();
foreach($subalbs as $subalb) {
$obj = newAlbum($subalb);
echo $obj->getTitle()."
";
}
`
This of course gets only the next sublevel.