index-main/site/plugins/kirby-seo/snippets/schemas.php

13 lines
238 B
PHP
Raw Normal View History

<?php
if (!class_exists('Spatie\SchemaOrg\Schema')) {
return;
}
$siteSchema ??= true;
$pageSchema ??= true;
foreach (array_merge($siteSchema ? $site->schemas() : [], $pageSchema ? $page->schemas() : []) as $schema) {
echo $schema;
}