BACK TO DIRECTORY

G10DER Repeater Fields for Advanced Custom Fields

by devg10der

0.0
(0 ratings)

G10DER Repeater Fields adds repeater field functionality for Advanced Custom Fields.

Create repeatable groups of fields without requiring ACF Pro.

Features:

  • Repeater field for ACF Free
  • Unlimited rows
  • Minimum and maximum row limits
  • Drag and drop row sorting
  • Row collapse and expand
  • Multiple repeater fields per page
  • Import and export support
  • Developer-friendly API
  • Lightweight and fast

Supported Sub Fields:

  • Text
  • Textarea
  • Number
  • Select
  • Checkbox
  • Radio
  • True / False
  • Image
  • File
  • Date Picker
  • Date Time Picker
  • WYSIWYG

Usage

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',
);

Screenshots

Extended Repeater field settings

Extended Repeater field settings

Sub field builder

Sub field builder

Repeater rows in the editor

Repeater rows in the editor

Drag and drop row sorting

Drag and drop row sorting

Displaying repeater data on the frontend

Displaying repeater data on the frontend

Plugin Details

Active Installs
60
Total Downloads
300
Version
1.0.0
Requires WP
6.0
Requires PHP
7.4
Tested Up To
7.0.4
Added
2026-06-18
Last Updated
2026-06-20 8:02am GMT

Ratings

5
0
4
0
3
0
2
0
1
0