GIF94;
| Path : /var/www/wordpress/wp-content/plugins/oxygen/plugin/blocks/ |
| Current File : /var/www/wordpress/wp-content/plugins/oxygen/plugin/blocks/block.cpt.php |
<?php
namespace Breakdance\Blocks;
use function Breakdance\Themeless\getTemplateCptsSharedArgs;
use function Breakdance\BreakdanceOxygen\Strings\__bdox;
/**
* @return void
*/
function register_post_type()
{
\register_post_type(
BREAKDANCE_BLOCK_POST_TYPE,
array_merge(
[
'labels' => [
'name' => __bdox('global_blocks'),
'singular_name' => __bdox('global_block'),
],
],
getTemplateCptsSharedArgs()
)
);
\Breakdance\Util\disable_publishing_options_and_attributes_metabox_and_force_status_to_publish(BREAKDANCE_BLOCK_POST_TYPE);
}