Support

Account

Home Forums General Issues Not showing content of Repeater Field Reply To: Not showing content of Repeater Field

  • ok, when it’s an image field, try the following

    while ( have_rows('bkg_slide_gallery') ) : the_row();
    
        $image = get_sub_field('image');
        echo '<img src="'. $image['url'] .'" />';
    
    endwhile;