Skip to content

Kirby 4.1.2

$site->page()

Returns the current page if $path is not specified. Otherwise it will try to find a page by the given path.

$site->page(?string $path = null): Kirby\Cms\Page|null

Parameters

Name Type Default Description
$path string|null null omit for current page,
otherwise e.g. notes/across-the-ocean

Return type

Kirby\Cms\Page|null

Parent class

Kirby\Cms\Site

Example

Fetching the current page

<?= $site->page()->title() ?>

Fetching any subpage

<?= $site->page('some/sub/page/deep/down')->title() ?>