Skip to content

Instantly share code, notes, and snippets.

View GuillaumeEudes's full-sized avatar

GuillaumeEudes

View GitHub Profile
@GuillaumeEudes
GuillaumeEudes / file.php
Created November 28, 2017 13:11
Get the first row from a repeater
<?php
$rows1 = get_field('galerie_isolation' ); // get all the rows
$first_row1 = $rows[1]; // get the first row
$title1=$first_row1['titre_galerie'];
$first_row_image1 = $first_row1['les_images' ]; // get the sub field value
?>
<?php if( have_rows('galerie_isolation') ):