Skip to content

Kirby 4.2.0

$pages->has()

Checks if the given object or id is in the collection

$pages->has(string|object $key): bool

Parameters

Name Type Default
$key * string|object

Return type

bool

Parent class

Kirby\Cms\Pages inherited from Kirby\Cms\Collection

<?php if(page('projects')->children()->has('projects/project-a')): ?>
  There exists a subpage with the uid `some-page`
<?php endif ?>