![]() |
|
how do I get the parent's album custom data on an image 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: how do I get the parent's album custom data on an image page (/thread-2234.html) |
how do I get the parent's album custom data on an image page - BertSimons - 2008-02-12 how do I get the parent's album custom data on an image page? i need the custom data of the parent of the album in which i am viewing an image is there something like this? `global $_zp_current_album; $parentalbum = $_zp_current_album->getParent(); $parentalbum = $parentalbum->customdata;` solved... `global $_zp_current_album; $parentalbum = $_zp_current_album->getParent(); $parentdata = $parentalbum->getCustomData();` could not get it to work becuase I was using getAlbumCustomData... |