blocksy-tainacan/inc/options/posts/tainacan-item-archive.php

33 lines
975 B
PHP
Raw Normal View History

<?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', [
2021-01-05 03:07:06 +00:00
'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),
];