get_row_index()ACF 1.0

No Hooks.

Returns

null. Nothing (null).

Usage

get_row_index();

get_row_index() code ACF 6.8.8

function get_row_index() {

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

	// return
	return $offset + $i;
}