get_row_index()ACF 1.0

Хуков нет.

Возвращает

null. Ничего (null).

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

get_row_index();

Код get_row_index() ACF 6.0.4

function get_row_index() {

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

	// return
	return $offset + $i;

}