$page->hasPrevUnlisted()
Checks if there's a previous unlisted page in the siblings collection
$page->hasPrevUnlisted(\Kirby\Cms\Collection|null $collection = null): bool
Parameters
Name | Type | Default |
---|---|---|
$collection | Kirby\Cms\Collection |null |
null |
Return type
bool
Parent class
Example
<?php
if ($page->hasPrevUnlisted()) {
echo $page->prevUnlisted()->url();
}
?>
With collection as argument
<?php
$collection = $page->siblings()->unlisted()->sortBy('date', 'desc');
if ($page->hasPrevUnlisted($collection)) {
echo $page->prevUnlisted($collection)->url();
}
?>