I want to use isset() in if() to display something if a zenpage is displayed. Is there a variable, such as $_zp_current_album for a currently displayed ZenPage?
Also Zenpage pages have their own theme file `pages.php` where you would have to place the checks you need. There is of course also a equivalent to `$_zp_current_album` which is `$_zp_current_zenpage_page`. (all listed on the user guide global variable article).
Comments
`zp-core -> extensions -> zenpage -> zenpage-template-functions.php`.
I guess you're looking for the function `is_Pages()` which checks if the current page is a zenpage page.