我用一个循环来制作一个滑块。我的代码是
<?php
query_posts( array( \'post_type\' => \'my_gallery\', \'author\'=>$author->ID ) );
while( have_posts() ) :
the_post();
$imagethum = eh_postImage(115, 70);
?>
<a data-slide-index="0" href=""><?php echo $imagethum; ?></a>
<?php endwhile; ?>
我需要
data-slide-index="0"
属性为循环中的每个帖子增加1,因此输出显示为。。。
<a data-slide-index="0" href="">
<a data-slide-index="1" href="">
<a data-slide-index="2" href="">
<a data-slide-index="3" href="">
<a data-slide-index="4" href="">
<a data-slide-index="5" href="">
打印后
某种程度上for each
这里的声明?