2020-09-16 02:15:40 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
if (! isset($is_general_cpt)) {
|
|
|
|
$is_general_cpt = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (! isset($is_bbpress)) {
|
|
|
|
$is_bbpress = false;
|
|
|
|
}
|
|
|
|
|
2020-09-23 23:11:03 +00:00
|
|
|
$options = [
|
2020-12-29 04:33:20 +00:00
|
|
|
[
|
|
|
|
blocksy_rand_md5() => [
|
|
|
|
'type' => 'ct-title',
|
2020-12-30 03:31:53 +00:00
|
|
|
'label' => __( 'Tainacan Item Elements', 'blocksy-tainacan' ),
|
2020-12-29 04:33:20 +00:00
|
|
|
],
|
|
|
|
],
|
|
|
|
blocksy_get_options(get_stylesheet_directory() . '/inc/options/single-elements/tainacan-single-structure.php', [
|
|
|
|
'prefix' => $post_type->name . '_single'
|
|
|
|
], false),
|
2020-11-18 01:04:40 +00:00
|
|
|
blocksy_get_options(get_stylesheet_directory() . '/inc/options/single-elements/section-labels.php', [
|
2020-09-29 21:38:03 +00:00
|
|
|
'prefix' => $post_type->name . '_single',
|
|
|
|
'enabled' => 'yes'
|
|
|
|
], false),
|
2020-12-30 03:31:53 +00:00
|
|
|
blocksy_get_options(get_stylesheet_directory() . '/inc/options/single-elements/document-attachments.php', [
|
2020-09-29 21:38:03 +00:00
|
|
|
'prefix' => $post_type->name . '_single',
|
|
|
|
], false),
|
2020-12-30 03:31:53 +00:00
|
|
|
blocksy_get_options(get_stylesheet_directory() . '/inc/options/single-elements/metadata-list.php', [
|
2020-11-18 01:04:40 +00:00
|
|
|
'prefix' => $post_type->name . '_single',
|
2020-12-30 03:31:53 +00:00
|
|
|
], false)
|
2020-09-23 23:11:03 +00:00
|
|
|
];
|