Skip to content

Kirby 5.1.1

$page->hasNextUnlisted()

Checks if there's a next unlisted page in the siblings collection

$page->hasNextUnlisted(Kirby\Cms\Pages|null $collection = null): bool

Parameters

Name Type Default
$collection Kirby\Cms\Pagesornull null

Return type

bool

This method modifies the existing $page object it is applied to and returns it again.

Parent class

Kirby\Cms\Page

Examples

if ($page->hasNextUnlisted()) {
  echo $page->nextUnlisted()->url();
}

With collection as argument

$collection = $page->siblings()->unlisted()->sortBy('date', 'desc');

if ($page->hasNextUnlisted($collection)) {
  echo $page->nextUnlisted($collection)->url();
}