Support

Account

Home Forums ACF PRO Is it possible to have 2 flexible field groups, but they work like one Reply To: Is it possible to have 2 flexible field groups, but they work like one

  • Test with get_sub_field function

    if (get_sub_field('reusable_field_group_for_text')) {
    	foreach (get_sub_field('reusable_field_group_for_text') as $p) {
    		echo $p;
    		the_sub_field('subfieldName');
    		the_sub_field('subFieldName2');
    	}
    }