Skip to content

Instantly share code, notes, and snippets.

View Windygo's full-sized avatar

Zvi Eshel Windygo

View GitHub Profile
@vovadocent
vovadocent / readonly_and_disabled_to_text_acf.php
Last active April 26, 2024 21:52
Readonly and disabled to ACF text field
<?php
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'),