我想在存档页面的所有单个帖子中显示ACF Flexible内容。目前,“存档”页面上的以下代码仅显示最后发布的灵活内容。我想在存档页面上使用灵活的内容显示所有帖子。
任何帮助将不胜感激。
<?php
if( have_rows('fabric') ):
while ( have_rows('fabric') ) : the_row();
?>
<div class="sales-wrap-info-single">
<?php if( get_sub_field('image') ): ?>
<img src="<?php the_sub_field('image'); ?>" />
<? endif ?>
</div>
<?php
endwhile;
else :
// no rows found
endif;
?>