addSettingSections( array( 'section_id' => '_repeatable_tabbed_sections', 'section_tab_slug' => 'repeatable_tabbes_sections', 'title' => __( 'Repeatable', 'admin-page-framework-loader' ), 'description' => __( 'It is possible to tab repeatable sections.', 'admin-page-framework-loader' ), 'repeatable' => true, // this makes the section repeatable 'sortable' => true, ) ); /* * Add form fields into the meta box. */ $this->addSettingFields( '_repeatable_tabbed_sections', // section id array( 'field_id' => 'tab_title', 'type' => 'section_title', 'label' => __( 'Name', 'admin-page-framework-loader' ), 'attributes' => array( 'size' => 10, // 'type' => 'number', // change the input type ), ), array( 'field_id' => 'text_field_in_tabbed_section_in_repeatable_sections', 'title' => __( 'Text', 'admin-page-framework-loader' ), 'type' => 'text', 'default' => 'xyz', ), array( 'field_id' => 'repeatable_field_in_tabbed_sections_in_repetable_sections', 'title' => __( 'Repeatable Field', 'admin-page-framework-loader' ), 'type' => 'text', 'repeatable' => true, ), array( 'field_id' => 'size_in_tabbed_sections_in_repeatable_sections', 'title' => __( 'Size', 'admin-page-framework-loader' ), 'type' => 'size', ), array( 'field_id' => 'select_in_tabbed_sections_in_repeatable_sections', 'title' => __( 'Select', 'admin-page-framework-loader' ), 'type' => 'select', 'default' => 'b', 'label' => array( 'a' => 'A', 'b' => 'B', 'c' => 'C', ), ), array( 'field_id' => 'color_in_tabbed_sections_in_repeatable_sections', 'title' => __( 'Color', 'admin-page-framework-loader' ), 'type' => 'color', ), array() ); } } new APF_MetaBox_RepeatableTabbedSections( null, // meta box ID - can be null. If null is passed, the ID gets automatically generated and the class name with all lower case characters will be applied. __( 'Repeatable Section Tabs', 'admin-page-framework-loader' ), // title array( 'apf_posts' ), // post type slugs: post, page, etc. 'normal', // context (what kind of metabox this is) 'default' // priority );