get_row_index()
No Hooks.
Returns
null. Nothing (null).
Usage
get_row_index();
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;
}