nouveau-theatre-de-besancon/site/plugins/kirby-seo/snippets/schemas.php
2024-09-19 07:36:53 +02:00

8 lines
178 B
PHP

<?php
$siteSchema ??= true;
$pageSchema ??= true;
foreach (array_merge($siteSchema ? $site->schemas() : [], $pageSchema ? $page->schemas() : []) as $schema) {
echo $schema;
}