the_row()ACF 4.3.0

the_row

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

Хуков нет.

Возвращает

(Массив). the current row data

Использование

the_row( $format );
$format **
-
По умолчанию: false

Список изменений

С версии 4.3.0 Введена.

Код the_row() ACF 6.0.4

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

}