在循环中将整数迭代为类名

时间:2011-02-12 13:24:09

标签: php wordpress

我有一个使用如下循环生成的列表:

<?php $the_query = new WP_Query('cat=40&showposts=10');
while ($the_query->have_posts()) : $the_query->the_post();?>
<?php
$my_post = get_post($post_id);
$title = $my_post->post_title;
$count = 0;
$count ++;
echo '<li class="name-'.$count.'">';
echo '<li>' .$title.'</li>';
?>

有人可以帮我将一个整数作为类名附加..所以输出会是这样的:

<li class="name-1">title</li>
<li class="name-2">title</li>

上面的代码只返回:

<li class="name-1">title</li>
<li class="name-1">title</li>

1 个答案:

答案 0 :(得分:2)

只需将$count=0移至上方循环播放。