Skip to content

Kirby 5.0.2

$page->isHomePage()

Checks if the page is the home page

$page->isHomePage(): bool

Return type

bool

Parent class

Kirby\Cms\Page

Examples

A custom title for the homepage

<?php if ($page->isHomePage()): ?>
<title>Welcome to my website</title>
<?php else: ?>
<title><?= html($page->title() . ' / ' . $site->title()) ?></title>
<?php endif ?>