nouveau-theatre-de-besancon/site/plugins/kirby-seo/snippets/schemas.php

9 lines
178 B
PHP
Raw Normal View History

2024-09-19 07:36:53 +02:00
<?php
$siteSchema ??= true;
$pageSchema ??= true;
foreach (array_merge($siteSchema ? $site->schemas() : [], $pageSchema ? $page->schemas() : []) as $schema) {
echo $schema;
}