$site->childrenAndDrafts()
Returns all published and draft children at the same time
$site->childrenAndDrafts(): Kirby\Cms\Pages
Return type
This method modifies the existing $site
object it is applied to and returns it again.
Parent class
Examples
<?php foreach ($site->childrenAndDrafts() as $item) {
if ($item->isDraft()) {
echo $item->title() . ' is a draft';
}
echo $item->title() . ' is a published page';
}