Im当前显示循环中的一些数据并加载模板:
<?php $index = 0; if ( have_rows(\'sections\', get_option(\'page_for_posts\') ) ) : while ( have_rows(\'sections\', get_option(\'page_for_posts\')) ) : the_row(); $index++; ?>
<?php get_template_part(\'parts/section\', get_row_layout() ); ?>
<?php endwhile; endif; ?>
在模板中,如何根据图像的每个循环进行循环计数?-我目前有:
<?php if ( $image = get_sub_field(\'image\') ) : ?>
<div class="inner">
Image [loopcount]
</div>
<?php endif; ?>
因此,假设循环中存在3幅图像,然后我希望打印出来:
<div class="inner">
Image 1
</div>
<div class="inner">
Image 2
</div>
<div class="inner">
Image 3
</div>