

Extended Repeater field settings
G10DER Repeater Fields adds repeater field functionality for Advanced Custom Fields.
Create repeatable groups of fields without requiring ACF Pro.
Features:
Supported Sub Fields:
Create an “Extended Repeater” field inside an ACF field group.
Retrieve values using:
$rows = get_field( 'your_field_key' );
if ( $rows ) {
foreach ( $rows as $row ) {
echo g10der_get_sub_field(
$row,
'subfield_key'
);
}
}<h3>Helper Function</h3>
The plugin includes a helper function:
g10der_get_sub_field(
$row,
$field_name
);
Example:
$rows = get_field( 'post_layout' );
foreach ( $rows as $row ) {
echo g10der_get_sub_field(
$row,
'heading'
);
}
Select and Radio fields return:
array(
'value' => 'option_1',
'label' => 'Option 1',
);
Checkbox fields return:
array(
'option_1' => 'Option 1',
'option_2' => 'Option 2',
);