You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
));