index-main/site/plugins/kirby-seo/blueprints/page.php
isUnknown 04a14a7f1f chore: update kirby-seo plugin to v2.0.0-alpha.12
Update plugin from v1.1.2 to v2.0.0-alpha.12 for Kirby 5 compatibility.

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-02-10 16:23:23 +01:00

60 lines
1.3 KiB
PHP

<?php
use tobimori\Seo\Seo;
return [
'label' => 'seo.tabs.seo',
'icon' => 'search',
'columns' => [
'main' => [
'width' => '7/12',
'fields' => [
'metaGroup' => 'seo/fields/meta-group',
'ogGroup' => 'seo/fields/og-group',
'robots' => 'seo/fields/robots',
'metaInherit' => [
'label' => 'seo.fields.inheritSettings.label',
'type' => 'multiselect',
'help' => 'seo.fields.inheritSettings.help',
'options' => [
'metaTemplate' => [
'*' => 'seo.fields.metaTitleTemplate.label'
],
'metaDescription' => [
'*' => 'seo.fields.metaDescription.label'
],
'ogTemplate' => [
'*' => 'seo.fields.ogTitleTemplate.label'
],
'ogDescription' => [
'*' => 'seo.fields.ogDescription.label'
],
'ogImage' => [
'*' => 'seo.fields.ogImage.label'
],
'cropOgImage' => [
'*' => 'seo.fields.cropOgImage.label'
],
'robots' => [
'*' => 'seo.fields.robots.label'
]
]
]
]
],
'sidebar' => [
'width' => '5/12',
'sticky' => true,
'sections' => [
'seoPreview' => [
'type' => 'seo-preview'
],
...(Seo::option('searchConsole.enabled') ? [
'seoSearchConsole' => [
'type' => 'seo-search-console'
]
] : [])
]
]
]
];