29. Multiselect



Last updated
Was this helpful?



Last updated
Was this helpful?
Was this helpful?
'tab_title_selected_labels' => array(
'type' => 'multiselect',
'label' => esc_html__( 'Add features to the list', 'stm_vehicles_listing' ),
'options' => $this->motors_get_features_list(),
'new_tag_settings' => array(
'add_label' => esc_html__( 'Add New Feature', 'stm_vehicles_listing' ),
'taxonomy_name' => 'stm_additional_features',
'placeholder' => 'Enter feature name',
'add_btn' => 'Add',
'cancel_btn' => 'Cancel',
),
),
#new_tag_settings - to insert the 'Add New' button'multiselect_2' => array(
'type' => 'multiselect',
'label' => esc_html__( 'Multiselect', 'my-domain' ),
'options' => array(
array(
'label' => 'My super title 1',
'value' => '1'
),
array(
'label' => 'My super title 1',
'value' => '2'
),
),
'track_by' => 'value'
),