Skip to content

Kirby 4.1.2

$page->isDescendantOf()

Checks if the page is a descendant of the given page

$page->isDescendantOf(\Kirby\Cms\Page|string $parent): bool

Parameters

Name Type Default
$parent * Kirby\Cms\Page|string

Return type

bool

Parent class

Kirby\Cms\Page

Example

<?php if($page->isDescendantOf('some-page')): ?>
This page is a descendant of the given page.
<?php endif ?>