Wordpress中的ACF中继器不显示图像


ACF Repeater in Wordpress not showing images

我在Wordpress中使用重复器显示图像时遇到了麻烦。出于某种原因,它只显示所有文本而不是图像本身?示例

上面的图像是我的缩略图帖子,并正确显示。有人知道是什么引起的吗?

我的代码
   <div class="row">
    <div class="col-sm-6 left"><h1>COMMERCIAL</h1><br>
       <div class="page-header">
        <?php $mymovies = new WP_Query(array(
          'post_type' => 'my_movies'
          )); ?>
          <?php while($mymovies->have_posts()) : $mymovies->the_post(); ?>
            <div class="movie-colums">
             <div class="thumbtitle group">
                <div class="preview">
                   <?php the_post_thumbnail('thumbnail'); ?>
                   <h1><?php the_title(); ?><br>
                      <?php the_field('year'); ?>   
                      <?php
                      // check if the repeater field has rows of data
                      if( have_rows('images_rep') ):
                        // loop through the rows of data
                        while ( have_rows('images_rep') ) : the_row();
                    // display a sub field value
                    the_sub_field('image');
                    endwhile;
                    else :
                       // no rows found
                        endif;
                    ?>                                  
                </h1>
            </div>
        </div>
    </div>
 <?php endwhile; ?>
</div>

thanks in advance

你的PHP位应该是:

<?php if( have_rows('images_rep') ): ?>
    <?php while( have_rows('images_rep') ): the_row(); 
        $image = get_sub_field('image');
    ?>
        <img src="<?php echo $image['url']; ?>" alt="<?php echo $image['alt'] ?>">
    <?php endwhile; ?>
<?php endif; ?>

看起来你的例子是输出图像对象,所以只需将图像URL包装在图像标签中。

裁判:https://www.advancedcustomfields.com/resources/image/