21 lines
502 B
PHP
21 lines
502 B
PHP
<?php
|
|
|
|
if (! isset($prefix)) {
|
|
$prefix = '';
|
|
}
|
|
if (! isset($enabled)) {
|
|
$enabled = 'no';
|
|
}
|
|
|
|
$options = [
|
|
$prefix . 'show_thumbnail' => [
|
|
'label' => __( 'Item thumbnail in the metadata list', 'tainacan-blocksy' ),
|
|
'type' => 'ct-switch',
|
|
'value' => $enabled,
|
|
'setting' => [ 'transport' => 'postMessage' ],
|
|
'desc' => __( 'Toggle to show or not the item thumbnail on the metadata list.', 'tainacan-blocksy' ),
|
|
'sync' => blocksy_sync_single_post_container([
|
|
'prefix' => $prefix
|
|
])
|
|
]
|
|
]; |