Diff: STRATO-apps/wordpress_03/app/wp-content/themes/blocksy/inc/options/engagement/general.php
Keine Baseline-Datei – Diff nur gegen leer.
1
-
1
+
<?php
2
+
3
+
$options = [
4
+
'general_visitor_eng_section_options' => [
5
+
'label' => __( 'Visitor Engagement', 'blocksy' ),
6
+
'type' => 'ct-panel',
7
+
'setting' => [ 'transport' => 'postMessage' ],
8
+
'inner-options' => [
9
+
apply_filters(
10
+
'blocksy_engagement_general_start_customizer_options',
11
+
[]
12
+
),
13
+
14
+
[
15
+
'enable_schema_org_markup' => [
16
+
'label' => __( 'Schema.org Markup', 'blocksy' ),
17
+
'type' => 'ct-switch',
18
+
'value' => 'yes',
19
+
'divider' => 'top:full',
20
+
'desc' => __( 'Enable Schema.org markup features for your website. You can disable this option if you use a SEO plugin and let it do the work.', 'blocksy' ),
21
+
],
22
+
],
23
+
24
+
apply_filters(
25
+
'blocksy_engagement_general_end_customizer_options',
26
+
[]
27
+
),
28
+
],
29
+
],
30
+
];