blocksy-tainacan/tainacan-blocksy/inc/options/single-elements/attachments-size.php

28 lines
501 B
PHP

<?php
if (! isset($prefix)) {
$prefix = '';
}
$options = [
$prefix . 'attachments_size' => [
'label' => __( 'Attachments size on carousel', 'tainacan-blocksy' ),
'type' => 'ct-slider',
'value' => [
'mobile' => '120px',
'tablet' => '130px',
'desktop' => '140px',
],
'units' => blocksy_units_config([
[
'unit' => 'px',
'min' => 42,
'max' => 200,
]
]),
'responsive' => true,
'sync' => blocksy_sync_single_post_container([
'prefix' => $prefix
])
],
];