【发布时间】:2015-02-10 19:13:31
【问题描述】:
我需要添加一个 $count;在类名之后到循环内的帖子 div。含义示例: - 所以帖子的类将是 mypost1、mypost2...
我可以正常工作,但我不知道如何在类名后添加 $count。
<?php $count = 0; if ( have_posts() ) : while ( have_posts() ) : the_post(); $count++; ?>
<div class="mypost">...</div>
<?php endwhile; endif; ?>
【问题讨论】: