Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save propertyhive/ca208abafd5ed684e9c8c9910833d62e to your computer and use it in GitHub Desktop.
Save propertyhive/ca208abafd5ed684e9c8c9910833d62e to your computer and use it in GitHub Desktop.
add_filter( 'propertyhive_template_assistant_custom_field_args_blakes_field', 'custom_additional_field_attributes', 10, 2);
function custom_additional_field_attributes( $atts, $post_id )
{
$atts['custom_attributes'] = array(
'readonly' => 'readonly'
);
return $atts;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment