| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190 |
- <?php
- // global
- global $field_group;
- // active
- acf_render_field_wrap(
- array(
- 'label' => __( 'Active', 'acf' ),
- 'instructions' => '',
- 'type' => 'true_false',
- 'name' => 'active',
- 'prefix' => 'acf_field_group',
- 'value' => $field_group['active'],
- 'ui' => 1,
- // 'ui_on_text' => __('Active', 'acf'),
- // 'ui_off_text' => __('Inactive', 'acf'),
- )
- );
- // Show fields in REST API.
- if ( acf_get_setting( 'rest_api_enabled' ) ) {
- acf_render_field_wrap(
- array(
- 'label' => __( 'Show in REST API', 'acf' ),
- 'instructions' => '',
- 'type' => 'true_false',
- 'name' => 'show_in_rest',
- 'prefix' => 'acf_field_group',
- 'value' => $field_group['show_in_rest'],
- 'ui' => 1,
- // 'ui_on_text' => __('Active', 'acf'),
- // 'ui_off_text' => __('Inactive', 'acf'),
- )
- );
- }
- // style
- acf_render_field_wrap(
- array(
- 'label' => __( 'Style', 'acf' ),
- 'instructions' => '',
- 'type' => 'select',
- 'name' => 'style',
- 'prefix' => 'acf_field_group',
- 'value' => $field_group['style'],
- 'choices' => array(
- 'default' => __( 'Standard (WP metabox)', 'acf' ),
- 'seamless' => __( 'Seamless (no metabox)', 'acf' ),
- ),
- )
- );
- // position
- acf_render_field_wrap(
- array(
- 'label' => __( 'Position', 'acf' ),
- 'instructions' => '',
- 'type' => 'select',
- 'name' => 'position',
- 'prefix' => 'acf_field_group',
- 'value' => $field_group['position'],
- 'choices' => array(
- 'acf_after_title' => __( 'High (after title)', 'acf' ),
- 'normal' => __( 'Normal (after content)', 'acf' ),
- 'side' => __( 'Side', 'acf' ),
- ),
- 'default_value' => 'normal',
- )
- );
- // label_placement
- acf_render_field_wrap(
- array(
- 'label' => __( 'Label placement', 'acf' ),
- 'instructions' => '',
- 'type' => 'select',
- 'name' => 'label_placement',
- 'prefix' => 'acf_field_group',
- 'value' => $field_group['label_placement'],
- 'choices' => array(
- 'top' => __( 'Top aligned', 'acf' ),
- 'left' => __( 'Left aligned', 'acf' ),
- ),
- )
- );
- // instruction_placement
- acf_render_field_wrap(
- array(
- 'label' => __( 'Instruction placement', 'acf' ),
- 'instructions' => '',
- 'type' => 'select',
- 'name' => 'instruction_placement',
- 'prefix' => 'acf_field_group',
- 'value' => $field_group['instruction_placement'],
- 'choices' => array(
- 'label' => __( 'Below labels', 'acf' ),
- 'field' => __( 'Below fields', 'acf' ),
- ),
- )
- );
- // menu_order
- acf_render_field_wrap(
- array(
- 'label' => __( 'Order No.', 'acf' ),
- 'instructions' => __( 'Field groups with a lower order will appear first', 'acf' ),
- 'type' => 'number',
- 'name' => 'menu_order',
- 'prefix' => 'acf_field_group',
- 'value' => $field_group['menu_order'],
- )
- );
- // description
- acf_render_field_wrap(
- array(
- 'label' => __( 'Description', 'acf' ),
- 'instructions' => __( 'Shown in field group list', 'acf' ),
- 'type' => 'text',
- 'name' => 'description',
- 'prefix' => 'acf_field_group',
- 'value' => $field_group['description'],
- )
- );
- // hide on screen
- $choices = array(
- 'permalink' => __( 'Permalink', 'acf' ),
- 'the_content' => __( 'Content Editor', 'acf' ),
- 'excerpt' => __( 'Excerpt', 'acf' ),
- 'custom_fields' => __( 'Custom Fields', 'acf' ),
- 'discussion' => __( 'Discussion', 'acf' ),
- 'comments' => __( 'Comments', 'acf' ),
- 'revisions' => __( 'Revisions', 'acf' ),
- 'slug' => __( 'Slug', 'acf' ),
- 'author' => __( 'Author', 'acf' ),
- 'format' => __( 'Format', 'acf' ),
- 'page_attributes' => __( 'Page Attributes', 'acf' ),
- 'featured_image' => __( 'Featured Image', 'acf' ),
- 'categories' => __( 'Categories', 'acf' ),
- 'tags' => __( 'Tags', 'acf' ),
- 'send-trackbacks' => __( 'Send Trackbacks', 'acf' ),
- );
- if ( acf_get_setting( 'remove_wp_meta_box' ) ) {
- unset( $choices['custom_fields'] );
- }
- acf_render_field_wrap(
- array(
- 'label' => __( 'Hide on screen', 'acf' ),
- 'instructions' => __( '<b>Select</b> items to <b>hide</b> them from the edit screen.', 'acf' ) . '<br /><br />' . __( "If multiple field groups appear on an edit screen, the first field group's options will be used (the one with the lowest order number)", 'acf' ),
- 'type' => 'checkbox',
- 'name' => 'hide_on_screen',
- 'prefix' => 'acf_field_group',
- 'value' => $field_group['hide_on_screen'],
- 'toggle' => true,
- 'choices' => $choices,
- )
- );
- // 3rd party settings
- do_action( 'acf/render_field_group_settings', $field_group );
- ?>
- <div class="acf-hidden">
- <input type="hidden" name="acf_field_group[key]" value="<?php echo $field_group['key']; ?>" />
- </div>
- <script type="text/javascript">
- if( typeof acf !== 'undefined' ) {
-
- acf.newPostbox({
- 'id': 'acf-field-group-options',
- 'label': 'left'
- });
- }
- </script>
|