Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- add_filter('rcl_default_public_form_fields','add_custom_field',10,2);
- function add_custom_field($fields,$post_type){
- if($post_type != 'post') return $fields;
- $fields[] = array(
- 'slug' => 'key-field',
- 'title' => __('Дефолтное имя для поля'),
- 'type' => 'select',
- 'options-field' => array(
- array(
- 'type' => 'text',
- 'slug' => 'field-option1',
- 'title' => __('Текстовая опция')
- ),
- array(
- 'type' => 'dynamic',
- 'slug' => 'field-option2',
- 'title' => __('Динамические поля')
- ),
- array(
- 'type' => 'checkbox',
- 'slug' => 'field-option3',
- 'title' => __('Чекбоксы'),
- 'values' => array(
- 'no' => __('Нет'),
- 'yes' => __('Да')
- )
- ),
- array(
- 'type' => 'select',
- 'slug' => 'field-option4',
- 'title' => __('Выпадающий список'),
- 'values' => array(
- __('Нет'),
- __('Да')
- )
- )
- )
- );
- return $fields;
- }
Add Comment
Please, Sign In to add comment