我有一段代码:
<?php
if( have_rows('our_people') ):
$i = 0;
while ( have_rows('our_people') ) : the_row(); ?>
<?php $i++; ?>
<?php if( $i > 3 ):
break; ?>
<?php endif; ?>
<a class="people-thumb fancybox-inline" href="#fancybox-<?php echo $i;?>">
<div class="people-thumb-image" style="width:172px;height:172px;overflow:hidden;background:transparent url(<?php the_sub_field('people_image'); ?>) no-repeat center center; background-size:cover;"></div>
<div class="people-thumb-details">
<h3><?php the_sub_field('people_name_acf'); ?></h3>
<p><?php the_sub_field('people_title'); ?></p>
</div>
</a>
<div class="peopleoverlay">
<div id="fancybox-<?php echo $i;?>">
<img src="<?php the_sub_field('people_image'); ?>" width="172" style="float:left;margin:0 10px 10px 0;"> <?php the_sub_field('people_details'); ?>
</div>
</div>
<?php endwhile;
else :
endif;
?>
这样做只是计算条目然后在3之后停止 - 工作正常。
但是,对于转发器字段中的其他行(3之后),如何才能显示这些行?推理是这3个是单独的样式div,所有其他条目都放在另一个div中。
但是,如果我尝试重复此代码,则不显示任何内容。所以我必须以某种方式重置这个?我希望3之后的所有转发器行显示在不同的部分。
答案 0 :(得分:0)
看起来您的代码明确表示不会显示超过3个结果!注释如下。
$i = 0; // Start a counter
while ( have_rows('our_people') ) : the_row(); ?> // As long as there are posts to display
<?php $i++; ?> // increment the counter
<?php if( $i > 3 ): // if the counter is 4 or more...
break; ?> // don't execute the code below; jump out of the while loop.
<?php endif; ?>
话虽如此,请删除$i = 0
以及以下行:
<?php $i++; ?>
<?php if( $i > 3 ):
break; ?>
<?php endif; ?>
这将允许ACF显示存储在该元数据域中的所有人。
但是,如果您要为第4个div及更高版本添加不同的类,请更改条件,删除break
语句,并将结果包装在标识它的div中。
<?php $i++; ?>
<?php if( $i > 3 ): ?>
<div class="other-style">
<?php endif; ?>
然后,你必须在最后用另一张支票关闭它。
...
<?php if( $i > 3 ): ?>
</div> <!-- .other-style -->
<?php endif; ?>