Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $fields = [
- [
- 'id' => 'template',
- 'name' => 'Template',
- 'type' => 'select',
- 'options' => [
- 'home' => 'Home',
- 'button' => 'Button',
- ],
- 'attributes' => [ 'required' => 'required' ],
- ],
- [
- 'id' => 'home_template',
- 'type' => 'group',
- 'visible' => ['template', '=', 'home'],
- 'fields' => [
- [
- 'id' => 'visual_buttons',
- 'type' => 'group',
- 'clone' => true,
- 'fields' => [
- [
- 'id' => 'title',
- 'name' => 'Title',
- 'type' => 'text',
- 'size' => 300,
- 'columns' => 12,
- ],
- [
- 'id' => 'description',
- 'name' => 'Description',
- 'type' => 'textarea',
- 'rows' => 3,
- 'columns' => 12,
- ],
- [
- 'id' => 'find_out_more',
- 'name' => 'Find out more',
- 'type' => 'text',
- 'size' => 300,
- 'columns' => 6,
- ],
- [
- 'id' => 'image',
- 'name' => 'Image',
- 'type' => 'single_image',
- 'columns' => 6,
- ],
- [
- 'id' => 'visual_button_link_type',
- 'type' => 'select',
- 'name' => 'Link type',
- 'options' => [
- 'none' => 'None',
- 'internal' => 'Internal',
- 'external' => 'External',
- ],
- 'columns' => 6,
- ],
- [
- 'id' => 'visual_button_link_target',
- 'type' => 'select',
- 'name' => 'Target',
- 'options' => [
- '_self' => 'Default',
- '_blank' => 'Blank',
- ],
- 'columns' => 6,
- ],
- [
- 'id' => 'visual_button_external_link',
- 'type' => 'text',
- 'name' => 'External link',
- 'size' => 300,
- 'visible' => ['visual_button_link_type', '=', 'external']
- ],
- [
- 'id' => 'visual_button_internal_link',
- 'type' => 'post',
- 'name' => 'Internal link',
- 'post_type' => ['page', 'post'],
- 'visible' => ['visual_button_link_type', '=', 'internal']
- ]
- ],
- ]
- ]
- ],
- [
- 'id' => 'button_template',
- 'type' => 'group',
- 'visible' => ['template', '=', 'button'],
- 'fields' => [
- [
- 'id' => 'label',
- 'type' => 'text',
- 'name' => 'Label',
- 'size' => 300,
- 'columns' => 12,
- ],
- [
- 'id' => 'button_link_type',
- 'type' => 'select',
- 'name' => 'Link type',
- 'options' => [
- 'none' => 'None',
- 'internal' => 'Internal',
- 'external' => 'External',
- ],
- 'columns' => 6,
- ],
- [
- 'id' => 'button_link_target',
- 'type' => 'select',
- 'name' => 'Target',
- 'options' => [
- '_self' => 'Default',
- '_blank' => 'Blank',
- ],
- 'columns' => 6,
- ],
- [
- 'id' => 'button_external_link',
- 'type' => 'text',
- 'name' => 'External link',
- 'size' => 300,
- 'hidden' => ['button_link_type', '!=', 'external']
- ],
- [
- 'id' => 'button_internal_link',
- 'type' => 'post',
- 'name' => 'Internal link',
- 'post_type' => ['page', 'post'],
- 'hidden' => ['button_link_type', '!=', 'internal']
- ]
- ]
- ]
- ];
- $meta_boxes[] = [
- 'title' => 'Block',
- 'id' => 'abcdef-block',
- 'type' => 'block',
- 'category' => 'abcdef-blocks',
- 'render_callback' => __CLASS__ . '::render_callback',
- 'fields' => $fields,
- ];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement