GIF94;
| Path : /var/www/wordpress/wp-content/plugins/oxygen/plugin/design-library/editor/ |
| Current File : /var/www/wordpress/wp-content/plugins/oxygen/plugin/design-library/editor/gutenberg.php |
<?php
use function Breakdance\BreakdanceOxygen\Strings\__bdox;
add_action('init', function() {
$postTypes = \Breakdance\Settings\get_allowed_post_types();
foreach($postTypes as $postType) {
register_post_meta($postType, __bdox('_meta_prefix') . 'hide_in_design_set', [
'show_in_rest' => true,
'single' => true,
'type' => 'boolean',
'auth_callback' => function() {
return current_user_can('edit_posts');
}
]);
register_post_meta($postType, __bdox('_meta_prefix') . 'tags', [
'show_in_rest' => true,
'single' => true,
'type' => 'string',
'auth_callback' => function() {
return current_user_can('edit_posts');
}
]);
}
});
add_action('enqueue_block_editor_assets', function() {
if (!\Breakdance\DesignLibrary\isDesignLibraryEnabled()) return;
wp_enqueue_script(
'breakdance-design-library-editor',
BREAKDANCE_PLUGIN_URL . '/plugin/design-library/editor/dist/editor.js',
['wp-edit-post']
);
});