Skip to content

Kirby 3.5.7.1

page()

Fetches a single page or multiple pages by id or the current page when no id is specified

page(string|array $id = null): Kirby\Cms\Page|null

Parameters

Name Type Default
$id string|array null

Return type

Kirby\Cms\Page|null

Example

Fetching a specific page by URI

<?= page('blog')->title() ?>

Fetching the current page

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

The page() helper fetches published pages only. To fetch a draft, you have to use $kirby->page('somepage').