在存档页面上的帖子中查看所有ACF Flexible内容

时间:2019-06-01 18:54:45

标签: php wordpress advanced-custom-fields

我想在存档页面的所有单个帖子中显示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;
?>

0 个答案:

没有答案