Tabbed navigation or simply "tabs" is a navigation within the page. Tabs save space and let the user quickly navigate between a small selection of equally important informations.
array(
'id' => 'tabbed_1',
'type' => 'tab',
'title' => esc_html__( 'Tab', 'plugin-name' ),
'options' => array(
'equal_width' => true, // optional, true or false
),
'tabs' => array(
array(
'title' => esc_html__( 'Tab 1', 'plugin-name' ),
'icon' => 'fa fa-star', // optional
'fields' => array(
array(
'id' => 'tabbed_1_tab_1_text_1',
'type' => 'text',
'title' => esc_html__( 'Tab 1 Text 1', 'plugin-name' ),
),
// other fields...
),
),
// optional
array(
'title' => esc_html__( 'Tab 2', 'plugin-name' ),
'icon' => 'fa fa-star', // optional
'fields' => array(
// other fields...
),
),
// other tabs...
),
),