Skip to content

Kirby 4.1.2

$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

Kirby\Cms\Page

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();
}
?>