Created
January 3, 2013 19:18
-
-
Save WagnerMatos/4446174 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
// Field Array | |
$prefix = 'pages_'; | |
$page_custom_meta_fields = array( | |
array( | |
'label' => 'Slider On/Off', | |
'desc' => 'Tick here if you would like a slider on this page (This will override the theme settings).', | |
'id' => $prefix.'slider_default_onoff', | |
'type' => 'select', | |
'options' => array ( | |
'one' => array ( | |
'label' => 'On', | |
'value' => 'one' | |
), | |
'two' => array ( | |
'label' => 'Off', | |
'value' => 'two' | |
) | |
) | |
), | |
array( | |
'label' => 'Short code for slider', | |
'desc' => 'Something like this: [rev_slider slider3]', | |
'id' => $prefix.'text', | |
'type' => 'text' | |
), | |
array( | |
'label' => 'Textarea', | |
'desc' => 'A description for the field.', | |
'id' => $prefix.'textarea', | |
'type' => 'textarea' | |
), | |
array( | |
'label' => 'Checkbox Input', | |
'desc' => 'A description for the field.', | |
'id' => $prefix.'checkbox', | |
'type' => 'checkbox' | |
), | |
array( | |
'label' => 'Select Box', | |
'desc' => 'A description for the field.', | |
'id' => $prefix.'select', | |
'type' => 'select', | |
'options' => array ( | |
'one' => array ( | |
'label' => 'Option One', | |
'value' => 'one' | |
), | |
'two' => array ( | |
'label' => 'Option Two', | |
'value' => 'two' | |
), | |
'three' => array ( | |
'label' => 'Option Three', | |
'value' => 'three' | |
) | |
) | |
), | |
array ( | |
'label' => 'Radio Group', | |
'desc' => 'A description for the field.', | |
'id' => $prefix.'radio', | |
'type' => 'radio', | |
'options' => array ( | |
'one' => array ( | |
'label' => 'Option One', | |
'value' => 'one' | |
), | |
'two' => array ( | |
'label' => 'Option Two', | |
'value' => 'two' | |
), | |
'three' => array ( | |
'label' => 'Option Three', | |
'value' => 'three' | |
) | |
) | |
), | |
array ( | |
'label' => 'Checkbox Group', | |
'desc' => 'A description for the field.', | |
'id' => $prefix.'checkbox_group', | |
'type' => 'checkbox_group', | |
'options' => array ( | |
'one' => array ( | |
'label' => 'Option One', | |
'value' => 'one' | |
), | |
'two' => array ( | |
'label' => 'Option Two', | |
'value' => 'two' | |
), | |
'three' => array ( | |
'label' => 'Option Three', | |
'value' => 'three' | |
) | |
) | |
), | |
array( | |
'label' => 'Category', | |
'id' => 'category', | |
'type' => 'tax_select' | |
), | |
array( | |
'label' => 'Post List', | |
'desc' => 'A description for the field.', | |
'id' => $prefix.'post_id', | |
'type' => 'post_list', | |
'post_type' => array('post','page') | |
), | |
array( | |
'label' => 'Date', | |
'desc' => 'A description for the field.', | |
'id' => $prefix.'date', | |
'type' => 'date' | |
), | |
array( | |
'label' => 'Slider', | |
'desc' => 'A description for the field.', | |
'id' => $prefix.'slider', | |
'type' => 'slider', | |
'min' => '0', | |
'max' => '100', | |
'step' => '5' | |
), | |
array( | |
'label' => 'Image', | |
'desc' => 'A description for the field.', | |
'id' => $prefix.'image', | |
'type' => 'image' | |
), | |
array( | |
'label' => 'Repeatable', | |
'desc' => 'A description for the field.', | |
'id' => $prefix.'repeatable', | |
'type' => 'repeatable' | |
) | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment