Toggle between hiding and showing HTML content.
array(
'id' => 'accordion_1',
'type' => 'accordion',
'title' => esc_html__( 'Accordion', 'plugin-name' ),
'options' => array(
'allow_all_open' => false, // optional, minimum one is always open
),
'sections' => array(
array(
'options' => array(
'icon' => 'fa fa-star',
'title' => 'Section 1',
'closed' => false, // optional, this accordion item is open in page load
),
'fields' => array(
// your fields...
// eg.:
array(
'id' => 'accordion_1_section_1_text_1',
'type' => 'text',
'title' => esc_html__( 'Accordion 1 Text 1', 'plugin-name' ),
'default' => 'default text',
),
),
),
array(
'options' => array(
'icon' => 'fa fa-star',
'title' => 'Section 2',
),
'fields' => array(
// your fields...
),
),
array(
'options' => array(
'icon' => 'fa fa-star',
'title' => 'Section 3',
),
'fields' => array(
// your fields...
),
),
),
),