Support

Account

Home Forums Add-ons Repeater Field Repeater documentation has perfect example…but it isn't working Reply To: Repeater documentation has perfect example…but it isn't working

  • If you meant replace this entire block:

    <?php
    
    $rows = get_field('gallery' ); // get all the rows
    $first_row = $rows[0]; // get the first row
    $first_row_image = $first_row['gallery_photo' ]; // get the sub field value
    
    // Note
    // $first_row_image = 123 (image ID)
    
    $image = wp_get_attachment_image_src( $first_row_image, 'full' );
    // url = $image[0];
    // width = $image[1];
    // height = $image[2];
    ?>
    <img src="<?php echo $image[0]; ?>" alt="why isn't this working?" />

    with this:

    <?php
    
    $rows = get_field('gallery' ); // get all the rows
    $first_row = $rows[0]; // get the first row
    $first_row_image = $first_row['gallery_photo' ]; // get the sub field value
    
    $rows = get_field('gallery' ); // get all the rows
    $first_row = $rows[0]; // get the first row
    ?>
    <img src="<?php $first_row['gallery_photo' ]; ?>" alt="is this working yet?" />

    then…no, still not working. The return value of the field is set to URL, but it returns <img src="" alt="is this working yet?" />