Support

Account

Home Forums ACF PRO Get specific row from repeater field Reply To: Get specific row from repeater field

  • Hi,

    Try this:

    $row_index = 3;
    $items = get_field( 'verzoeken' );
    
    if ( $items ) {
    	$date = $items[ $row_index ]['datum'];
    	$description = $items[ $row_index ]['omschrijving'];
    }