Skip to content

Instantly share code, notes, and snippets.

@sbruner
Last active January 15, 2016 02:43
Show Gist options
  • Save sbruner/185e8e057412d25e1299 to your computer and use it in GitHub Desktop.
Save sbruner/185e8e057412d25e1299 to your computer and use it in GitHub Desktop.
Piklist: custom field
<?php
piklist('field', array(
'type' => 'my-checkbox', // custom field type
'field' => 'custom-checkbox',
'label' => 'Custom Select Field',
'choices' => array(
'first' => 'First Choice',
'second' => 'Second Choice',
'third' => 'Third Choice'
)
));
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment