Created
May 19, 2018 20:10
-
-
Save fastlinemedia/75b336551ea2a1819247cc9ce92621de to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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