我正在尝试使用在页面加载时具有动画横幅的ACF构建网站。为了使效果起作用,我需要第一个项目具有特定的类,然后它的兄弟姐妹没有这些类。我尝试使用计数器,但我是PHP / ACF的新手,所以虽然我可以做基本的转发器的东西,这让我有点卡住了。我试过的是
<?php if( have_rows('homepage_tiles') ):
$count = 0;
?>
<div class="hero-list-container">
<?php while( have_rows('homepage_tiles') ): the_row();
// vars
$image = get_sub_field('image');
$content = get_sub_field('content');
$link = get_sub_field('link');
?>
<?php if($count == 0): ?>
<div class="list-tile animate-up first">
<div class="module-background" style="background-image: url('<?php the_sub_field('tile_bg_image') ?>'); background-size: cover;">
</div>
</div>
<?php $counter++; ?>
<?php endif; ?>
<?php endwhile; ?>
</div>
<?php endif; ?>
我会好好循环,只是将类添加到第一个,或者输出第一个项目所需的完整html,然后输出不同的html。
感谢您的帮助!
所以我使用它并且它有效,但是如果有人有更好的解决方案,我愿意接受它。
<?php if( have_rows('homepage_tiles') ):
$count = 1;
?>
<div class="hero-list-container">
<?php while( have_rows('homepage_tiles') ): the_row();
// vars
$image = get_sub_field('image');
$content = get_sub_field('content');
$link = get_sub_field('link');
?>
<?php if($count == 1): ?>
<div class="list-tile animate-up first">
<div class="module-background" style="background-image: url('<?php the_sub_field('tile_bg_image') ?>'); background-size: cover;">
</div>
</div>
<?php endif; ?>
<?php $count++; ?>
<?php if($count > 2): ?>
<div class="list-tile">
<div class="module-background" style="background-image: url('<?php the_sub_field('tile_bg_image') ?>'); background-size: cover;">
</div>
</div>
<?php endif; ?>
<?php endwhile; ?>
</div>
<?php endif; ?>
我把它设置为&gt; = 2但是由于某种原因它会重复第一张幻灯片。
答案 0 :(得分:0)
我知道这个问题是几个月前发布的,但是如果您想简化代码,这是我的解决方案。
<?php if( have_rows('homepage_tiles') ): $counter = 0; ?>
<div class="hero-list-container">
<?php
while( have_rows('homepage_tiles') ): the_row();
$tile_bg_image = get_sub_field('tile_bg_image');
?>
<div class="list-tile<?php if( $counter == 0 ) { ?> animate-up first<?php } ?>">
<div class="module-background" style="background-image: url('<?php echo $tile_bg_image; ?>'); background-size: cover;"></div>
</div>
<?php $counter++; endwhile; ?>
</div>
<?php endif; ?>