Skip to content

Taxonomy Select Field

Robert O'Rourke edited this page Feb 6, 2015 · 9 revisions

Taxonomy select field. Displays a select input containing all terms within a given taxonomy.

taxanomy_select

Uses Select2, a jQuery based replacement for select boxes.

Args

Required Args

  • id (string) (required)
  • name (string) (required) Field display name. Used as field label.
  • type 'taxonomy_select' (required)

Field Specific Args

  • taxonomy (string) (required)
  • allow_none (bool) Shows a blank option so the selection can be emptied
  • multiple (bool) When true allows selection of multiple taxonomy terms

Optional Generic Args

See Optional Generic Args

Example Usage

array( 
	'id'       => 'example-field-taxonomy-select', 
	'name'     => 'Taxonomy Select Field', 
	'type'     => 'taxonomy_select', 
	'taxonomy' => 'category' 
);