wp-productzilla/wp-content/themes/blocksy/inc/options/meta/blog.php
rizal.productzilla e38e8b231d templating
2024-04-01 16:08:46 +07:00

24 lines
349 B
PHP

<?php
$options = [
[
'disable_header' => [
'label' => __( 'Disable Header', 'blocksy' ),
'type' => 'ct-switch',
'value' => 'no',
],
'disable_footer' => [
'label' => __( 'Disable Footer', 'blocksy' ),
'type' => 'ct-switch',
'value' => 'no',
],
],
apply_filters(
'blocksy_extensions_metabox_page_bottom',
[]
)
];