Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- add_action('acf/render_field_settings/type=text', 'add_readonly_and_disabled_to_text_field');
- function add_readonly_and_disabled_to_text_field($field) {
- acf_render_field_setting( $field, array(
- 'label' => __('Read Only?','acf'),
- 'instructions' => '',
- 'type' => 'radio',
- 'name' => 'readonly',
- 'choices' => array(
- 1 => __("Yes",'acf'),
- 0 => __("No",'acf'),
- ),
- 'layout' => 'horizontal',
- ));
- acf_render_field_setting( $field, array(
- 'label' => __('Disabled?','acf'),
- 'instructions' => '',
- 'type' => 'radio',
- 'name' => 'disabled',
- 'choices' => array(
- 0 => __("Yes",'acf'),
- 1 => __("No",'acf'),
- ),
- 'layout' => 'horizontal',
- ));
- }
Add Comment
Please, Sign In to add comment