Skip to content

Instantly share code, notes, and snippets.

@soderlind-gist
Created January 16, 2013 00:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save soderlind-gist/4543627 to your computer and use it in GitHub Desktop.
Save soderlind-gist/4543627 to your computer and use it in GitHub Desktop.
piklist:select
piklist( 'field', array(
'type' => 'select'
, 'scope' => 'post_meta' // Not used for settings sections
, 'field' => 'field_name'
, 'value' => 'option2' // Sets default to Option 2
, 'label' => 'Example Field'
, 'description' => 'Field Description'
, 'attributes' => array(
'class' => 'text'
)
, 'choices' => array(
'option1' => 'Option 1'
, 'option2' => 'Option 2'
, 'option3' => 'Option 3'
)
) );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment