GIF94;
| Path : /var/www/wordpress/wp-content/plugins/oxygen/plugin/themeless/ |
| Current File : /var/www/wordpress/wp-content/plugins/oxygen/plugin/themeless/template.cpt.php |
<?php
namespace Breakdance\Themeless;
/**
* @return void
*/
function register_template_post_type()
{
\register_post_type(
BREAKDANCE_TEMPLATE_POST_TYPE,
array_merge(
[
'labels' => [
'name' => esc_html__('Templates', 'breakdance'),
'singular_name' => esc_html__('Template', 'breakdance'),
],
],
getTemplateCptsSharedArgs()
)
);
\Breakdance\Util\disable_publishing_options_and_attributes_metabox_and_force_status_to_publish(BREAKDANCE_TEMPLATE_POST_TYPE);
}