18 lines
285 B
PHP
18 lines
285 B
PHP
<?php
|
|
|
|
if (! isset($prefix)) {
|
|
$prefix = '';
|
|
$initial_prefix = '';
|
|
} else {
|
|
$initial_prefix = $prefix;
|
|
$prefix = $prefix . '_';
|
|
}
|
|
|
|
$options = [
|
|
$prefix . 'has_posts_reveal' => [
|
|
'label' => __('Cards Reveal Effect', 'blocksy'),
|
|
'type' => 'ct-switch',
|
|
'value' => 'no',
|
|
],
|
|
];
|