Yogesh Chauhan's Blog

WordPress: How to access first and random row values from a repeater field in ACF?

in WordPress on March 2, 2021

We saw a few different examples to get values from ACF like How to get ACF values from custom post type?, How to loop through a repeater field in ACF? and How to get ACF field values from another post?

Let’s continue to explore the wonderful ACF more…

The Repeater field is a really good solution for repeating content like slides, team members, directory, and many more repeating contents.

The Repeater field type acts as a parent to a set of sub fields which can be repeated again and again and there are no limits to the number of repeats either as long as you don’t specify.

The Repeater field will return an array of rows, where each row is an array containing sub field values.

When you add a repeater field, it creates additional functions specifically for looping over rows and accessing sub field values like have_rows, the_row, get_sub_field, and the_sub_field functions.

How to access the first row values from a repeater field?

Let’s see how to load a sub field value from the first row of a Repeater field.


$rows = get_field('repeater_field_name' );
if( $rows ) {
    $first_row = $rows[0];
    $first_row_title = $first_row['title'];
    // Do something...
}

How to access first row values from a repeater field using the break statement?

We can also use the break statement within a have_rows() loop to step out at any time.


if( have_rows('repeater_field_name') ) {
    while( have_rows('repeater_field_name') ) {
        the_row();
        $first_row_title = get_sub_field('title');
        // Do something...
        break;
    }
}

How to access the random row values from a repeater field?


$rows = get_field('repeater_field_name' );
if( $rows ) {
    $index = array_rand( $rows );
    $rand_row = $rows[ $index ];
    $rand_row_title = $rand_row['title'];
    // Do something...
}


Most Read

#1 Solution to the error “Visual Studio Code can’t be opened because Apple cannot check it for malicious software” #2 How to add Read More Read Less Button using JavaScript? #3 How to check if radio button is checked or not using JavaScript? #4 Solution to “TypeError: ‘x’ is not iterable” in Angular 9 #5 PHP Login System using PDO Part 1: Create User Registration Page #6 How to uninstall Cocoapods from the Mac OS?

Recently Posted

#Apr 8 JSON.stringify() in JavaScript #Apr 7 Middleware in NextJS #Jan 17 4 advanced ways to search Colleague #Jan 16 Colleague UI Basics: The Search Area #Jan 16 Colleague UI Basics: The Context Area #Jan 16 Colleague UI Basics: Accessing the user interface
You might also like these
How to insert Bootstrap 4 in Angular 9 app?AngularWhat is the difference between Loosely Typed Language and Strongly Typed Language?MiscellaneousHow to get recent posts in WordPress?WordPressHow to replace HTML lists using CSS Counters?CSSFew more :nth-child examples in CSSCSSArguments in @mixin rules in SCSS (Sass)SCSS