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-09-16 02:15:40 +00:00
|
|
|
blocksy_get_options(get_stylesheet_directory() . '/inc/options/single-elements/title-metadata.php', [
|
2020-09-23 23:11:03 +00:00
|
|
|
'prefix' => $post_type->name . '_single',
|
2020-09-16 02:15:40 +00:00
|
|
|
'enabled' => 'yes'
|
2020-09-23 23:11:03 +00:00
|
|
|
], false)
|
|
|
|
];
|