Support

Account

Home Forums Add-ons Flexible Content Field Add field to layout 'sub_fields' via php Reply To: Add field to layout 'sub_fields' via php

  • I was trying to add the fields similar to the example in the documentation (http://www.advancedcustomfields.com/resources/register-fields-via-php). See:

    acf_add_local_field(array(
    	'key' => 'field_1',
    	'label' => 'Sub Title',
    	'name' => 'sub_title',
    	'type' => 'text',
    	'parent' => 'group_1'
    ));

    I’m guessing this only works for fields in groups and not for ‘sub_fields’ in flexible content layouts?

    I’m trying to separate the fields within the groups and flexible layouts to make the code more manageable and possibly reuse the same field code in another instance.