the_row()ACF 4.3.0

This function will progress the global repeater or flexible content value 1 row

No Hooks.

Returns

(array). the current row data

Usage

the_row( $format );
$format
.
Default: false

Changelog

Since 4.3.0 Introduced.

the_row() code ACF 6.8.8

function the_row( $format = false ) {

	// vars
	$i = acf_get_loop( 'active', 'i' );

	// increase
	++$i;

	// update
	acf_update_loop( 'active', 'i', $i );

	// return
	return get_row( $format );
}