Skip to content

Kirby 4.1.2

$page->hasNext()

Checks if there's a next item in the collection

$page->hasNext(\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->hasNext()) {
  echo $page->next()->url();
}
?>

With collection as argument

<?php
$collection = $page->siblings()->sortBy('date', 'desc');
if ($page->hasNext($collection)) {
  echo $page->next($collection)->url();
}
?>