Skip to content
mrfoto edited this page Nov 14, 2012 · 2 revisions
$metaBox->addField(array(
	'type' => 'Select', //string Type of field is Select
	'id' => 'car_brand', //string ID of the field as it will be later accessible by get_post_meta()
	'label' => 'What is your favorite car brand?', //string Label for the field
	'default' => 'Pick a brand', //string default (first) value of the Select - can be left empty/undefined
	'options' => $carBrands //array of key => value pairs which will be options in the Select
));

Clone this wiki locally