2021-07-06 18:11:01 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
if (! isset($prefix)) {
|
|
|
|
$prefix = '';
|
|
|
|
}
|
|
|
|
|
|
|
|
$options = [
|
|
|
|
$prefix . 'document_width' => [
|
|
|
|
'label' => __( 'Maximum width of the main document slider', 'tainacan-blocksy' ),
|
|
|
|
'type' => 'ct-slider',
|
|
|
|
'value' => 100,
|
|
|
|
'min' => 20,
|
|
|
|
'max' => 100,
|
|
|
|
'unit' => '%',
|
|
|
|
'defaultUnit' => '%',
|
|
|
|
'responsive' => true,
|
|
|
|
'sync' => blocksy_sync_single_post_container([
|
|
|
|
'prefix' => $prefix
|
|
|
|
])
|
2022-06-10 20:25:27 +00:00
|
|
|
]
|
2021-07-06 18:11:01 +00:00
|
|
|
];
|