Skip to content

Instantly share code, notes, and snippets.

@fastlinemedia
Created May 19, 2018 20:10
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 fastlinemedia/75b336551ea2a1819247cc9ce92621de to your computer and use it in GitHub Desktop.
Save fastlinemedia/75b336551ea2a1819247cc9ce92621de to your computer and use it in GitHub Desktop.
<?php
function px_field_distance() {
$field = array(
'type' => 'select',
'label' => __( 'My Label', 'fl-builder' ),
'default' => '0',
'options' => array(
'0' => __( 'Option 1', 'fl-builder' ),
'1' => __( 'Option 2', 'fl-builder' )
),
);
return $field;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment