Diff: STRATO-apps/wordpress_03/app/wp-content/themes/blocksy/inc/options/meta/blog.php
Keine Baseline-Datei – Diff nur gegen leer.
1
-
1
+
<?php
2
+
3
+
$options = [
4
+
[
5
+
'disable_header' => [
6
+
'label' => __( 'Disable Header', 'blocksy' ),
7
+
'type' => 'ct-switch',
8
+
'value' => 'no',
9
+
],
10
+
11
+
'disable_footer' => [
12
+
'label' => __( 'Disable Footer', 'blocksy' ),
13
+
'type' => 'ct-switch',
14
+
'value' => 'no',
15
+
],
16
+
],
17
+
18
+
apply_filters(
19
+
'blocksy_extensions_metabox_page_bottom',
20
+
[]
21
+
)
22
+
];
23
+
24
+