嘿,伙计们,我想在wordpress循环中每4篇帖子添加一个类,如上图所示
我在使用wordpress的简单循环,我已经研究过如何使用计数器或模,但没有找到解决方案,你们能帮我吗,谢谢。
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div class="col-md-3">
<div class="box_ow">
<div class="rollover_cont" style="background-color: #098EAD; mix-blend-mode: multiply; z-index:1;">
<h3> <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a> </h3>
<a class="go_project_link" href="<?php the_permalink(); ?>">Go to Project ></a>
<img class="img-fluid icons_social_img" src="<?php bloginfo(\'template_directory\') ?>/assets/images/icons_social.svg" alt="">
</div>
<img class="img-fluid" src="<?php bloginfo(\'template_directory\') ?>/assets/images/image_holder.jpg" alt="">
</div>
</div>
<?php endwhile; else : ?>
<p><?php esc_html_e( \'Sorry, no posts matched your criteria.\' ); ?></p>
<?php endif; ?>
最合适的回答,由SO网友:Q Studio 整理而成
您可以尝试以下操作:
if ( have_posts() ) :
// define count var ##
$count = 1;
while ( have_posts() ) :
the_post();
?>
<div class="class_bg_<?php echo $count; ?>">XXX</div>
<?php
// iterate ##
$count ++;
// reset count if reached 5 ##
if( 5 == $count ){ $count = 1; }
endwhile;
endif;