2020-12-23 12:38:30 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
$options = [
|
|
|
|
[
|
|
|
|
blocksy_rand_md5() => [
|
|
|
|
'type' => 'ct-title',
|
|
|
|
'label' => __( 'Page Elements', 'blocksy' ),
|
|
|
|
],
|
|
|
|
],
|
|
|
|
|
2021-02-02 13:31:52 +00:00
|
|
|
blocksy_get_options(get_stylesheet_directory() . '/inc/options/archive-elements/page-header.php', [
|
|
|
|
'prefix' => $post_type->name . '_archive'
|
|
|
|
], false),
|
|
|
|
|
2020-12-23 12:38:30 +00:00
|
|
|
blocksy_get_options(get_stylesheet_directory() . '/inc/options/archive-elements/search-control.php', [
|
2021-01-05 03:07:06 +00:00
|
|
|
'prefix' => $post_type->name . '_archive'
|
2020-12-23 12:38:30 +00:00
|
|
|
], 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),
|
|
|
|
|
2021-01-08 22:45:22 +00:00
|
|
|
blocksy_get_options(get_stylesheet_directory() . '/inc/options/archive-elements/color-palettes.php', [
|
|
|
|
'prefix' => $post_type->name . '_archive'
|
|
|
|
], false),
|
2020-12-23 12:38:30 +00:00
|
|
|
];
|