is_pod_page

(Since 1.7.5) -- See if the current (or another) page URI is a Pod Page
function is_pod_page($uri = null)
This function checks to see if the page you're currently on is a Pod Page.

Returns

True or false

Examples

if (function_exists('is_pod_page')) {
    if (is_pod_page()) {
        echo 'You are looking at a Pod Page.';
    }
}
See Also