is_pod_page

(Since 1.7.5) -- See if the current page is a Pod Page
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