$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 |
omit for current page, otherwise e.g. notes/across-the-ocean |
Return type
Kirby\Cms\Page
|null
Parent class
Example
Fetching the current page
<?= $site->page()->title() ?>
Fetching any subpage
<?= $site->page('some/sub/page/deep/down')->title() ?>