2020-09-16 02:15:40 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
if (! isset($prefix)) {
|
|
|
|
$prefix = '';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (! isset($enabled)) {
|
|
|
|
$enabled = 'yes';
|
|
|
|
}
|
|
|
|
|
2020-09-23 23:11:03 +00:00
|
|
|
$options = [
|
2020-09-29 21:38:03 +00:00
|
|
|
$prefix . 'show_title_metadata' => [
|
2020-09-24 12:25:10 +00:00
|
|
|
'label' => __( 'Core title in the metadata list', 'blocksy-tainacan' ),
|
2020-09-23 23:11:03 +00:00
|
|
|
'type' => 'ct-switch',
|
2020-09-16 02:15:40 +00:00
|
|
|
'value' => $enabled,
|
2020-09-23 23:11:03 +00:00
|
|
|
'setting' => [ 'transport' => 'postMessage' ],
|
2020-12-30 03:31:53 +00:00
|
|
|
'desc' => __( 'Toggle to hide or not the core title from the metadada list, as it already appears on the page title.', 'blocksy-tainacan' ),
|
2020-09-16 02:15:40 +00:00
|
|
|
'sync' => blocksy_sync_single_post_container([
|
|
|
|
'prefix' => $prefix
|
|
|
|
])
|
2020-09-23 23:11:03 +00:00
|
|
|
]
|
2020-09-16 02:15:40 +00:00
|
|
|
];
|