`$album = $_zp_current_album;
while ($parent = $album->getParent()) { $album = $parent; }
if ($album == $_zp_current_album) {
// what do you want to do here? The album is the main one!
} else {
echo $album->getDesc();
}`
Caveat: I have not tried this!