Display term chooses input file via select, radio, checkbox and etc.
Via Select input field
array( 'id' => 'terms_select', 'title' => __('Terms select Field','text-domain'), 'details' => __('Description of Taxonomy(category) list field','text-domain'), 'type' => 'select', 'args' => 'WPADMINSETTINGS_TAX_%category%', ),
array( 'id' => 'terms_select8', 'title' => __('Terms select Field','text-domain'), 'details' => __('Description of Taxonomy(category) list field','text-domain'), 'type' => 'select', 'multiple' => true, 'args' => 'WPADMINSETTINGS_TAX_%category%', ),
Via Select2 input field
array( 'id' => 'terms_select', 'title' => __('Terms select Field','text-domain'), 'details' => __('Description of Taxonomy(category) list field','text-domain'), 'type' => 'select2', 'args' => 'WPADMINSETTINGS_TAX_%category%', ),
array( 'id' => 'terms_select', 'title' => __('Terms select Field','text-domain'), 'details' => __('Description of Taxonomy(category) list field','text-domain'), 'type' => 'select2', 'multiple' => true, 'args' => 'WPADMINSETTINGS_TAX_%category%', ),
Via Radio input field
array( 'id' => 'terms_select', 'title' => __('Terms select Field','text-domain'), 'details' => __('Description of Taxonomy(category) list field','text-domain'), 'type' => 'radio', 'args' => 'WPADMINSETTINGS_TAX_%category%', ),
Via Checkbox input field
array( 'id' => 'terms_select', 'title' => __('Terms select Field','text-domain'), 'details' => __('Description of Taxonomy(category) list field','text-domain'), 'type' => 'checkbox', 'args' => 'WPADMINSETTINGS_TAX_%category%', ),