好吧,我已经读了20篇关于在另一个while循环中使用while循环的不同文章,但仍然无法实现这一点,我快要崩溃了。
我的场景:使用高级自定义字段插件和WP Coda滑块。我的目标是在Coda滑块中显示一个小的图像库(通过ACF插件加载到自定义的帖子类型上)。
ACF中的图像也使用ACF的转发器插件。这需要使用while循环来输出图像。
事实:图像的父字段:公文包图像图像图像的字段键:图像
ACF表示的php将显示图像:
<?php while(the_repeater_field(\'portfolio-images\')): ?>
<a href="<?php the_sub_field(\'link\'); ?>">
<img src="<?php the_sub_field(\'image\'); ?>" alt="image" />
</a>
<?php endwhile; ?>
我已经在为WP Coda滑块运行此循环:
`
<div id="post-<?php the_ID(); ?>" <?php post_class(\'panel\'); ?>>
<div class="panel-wrapper">
<div id="package-tagline-container" class="container_24">
<div class="bracket grid_1">{</div>
<div id="page-tagline" class="grid_16">
<h6><?php the_field(\'tagline\'); ?></h6>
</div>
<div class="bracket grid_1">}</div>
<div id="package-title" class="grid_6">
<h4 class="title"><?php the_title(); ?></h4>
</div>
</div><!-- #package-tagline-container -->
<?php the_content(); ?>
</div> <!-- .panel-wrapper -->
</div> <!-- .panel -->
<?php endwhile; else:
endif;
wp_reset_query(); ?>
我不知道在这一点上还能尝试什么。非常感谢您的帮助。谢谢