Does anyone know if there is a way I can retrieve the 'ID' or 'name' of the 'top' album ONLY to be used on the image.php page?, so for example if I had something like
AlbumOne
> SubAlbumOneA
> SubAlbumOneB
> > SubSubAlbumOneBA
> > > ImageOne < so I want to get the ID of AlbumOne
> > > ImageTwo < so I want to get the ID of AlbumOne
> > SubSubAlbumOneBB
AlbumTwo
> SubAlbumTwoA
> > SubSubAlbumTwoAA
> > SubSubAlbumTwoAB
> > > ImageThree < so I want to get the ID of AlbumTwo
> SubAlbumTwoB
AlbumThree
> SubAlbumThreeA
> SubAlbumThreeB
> > ImageFour < so I want to get the ID of AlbumThree
> SubAlbumThreeC
> > SubSubAlbumThreeCA
> > SubSubAlbumThreeCB
Thanks for your help
GW
Comments
$album = getUrAlbum($_zp_current_album);
$id = $abum->getID();
`
Thanks
GW
Thanks
GW