33 lines
975 B
PHP
33 lines
975 B
PHP
<?php
|
|
|
|
$options = [
|
|
[
|
|
blocksy_rand_md5() => [
|
|
'type' => 'ct-title',
|
|
'label' => __( 'Page Elements', 'blocksy' ),
|
|
],
|
|
],
|
|
|
|
blocksy_get_options(get_stylesheet_directory() . '/inc/options/archive-elements/page-header.php', [
|
|
'prefix' => $post_type->name . '_archive'
|
|
], false),
|
|
|
|
blocksy_get_options(get_stylesheet_directory() . '/inc/options/archive-elements/search-control.php', [
|
|
'prefix' => $post_type->name . '_archive'
|
|
], false),
|
|
|
|
blocksy_get_options(get_stylesheet_directory() . '/inc/options/archive-elements/filters-panel.php', [
|
|
'prefix' => $post_type->name . '_archive',
|
|
'enabled' => 'yes'
|
|
], false),
|
|
|
|
blocksy_get_options(get_stylesheet_directory() . '/inc/options/archive-elements/pagination.php', [
|
|
'prefix' => $post_type->name . '_archive',
|
|
'enabled' => 'yes'
|
|
], false),
|
|
|
|
blocksy_get_options(get_stylesheet_directory() . '/inc/options/archive-elements/color-palettes.php', [
|
|
'prefix' => $post_type->name . '_archive'
|
|
], false),
|
|
];
|