Skip to content

Kirby 4.1.2

$page->isDescendantOfActive()

Checks if the page is a descendant of the currently active page

$page->isDescendantOfActive(): bool

Return type

bool

Parent class

Kirby\Cms\Page

Example

<?php if($page->isDescendantOfActive()): ?>
This page is a descendant of the currently active page.
<?php endif ?>