Skip to content

Instantly share code, notes, and snippets.

@sbruner
Last active January 16, 2016 03:38
Show Gist options
  • Save sbruner/ddfadb41a70a6055b5d8 to your computer and use it in GitHub Desktop.
Save sbruner/ddfadb41a70a6055b5d8 to your computer and use it in GitHub Desktop.
Piklist: field: multiselect
<?php
piklist('field', array(
'type' => 'select',
'field' => 'my_multiselect',
'label' => 'My Multiselect',
'choices' => array(
'first' => 'First Choice',
'second' => 'Second Choice',
'third' => 'Third Choice'
),
'attributes' => array(
'multiple' => 'multiple' // Allow a select field to accept multiple selections
)
));
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment