我不是那么专家。我想修改“分类后小工具”。在循环中,我想要那样的html输出。
<ul>
<li><div class="a">1</div>
Title here
</li>
<li><div class="a">2</div>
Title here
</li>
<li><div class="a">2</div>
Title here
</li>
</ul>
我的循环是:
echo '<ol>';
while ( $cat_posts->have_posts() )
{
$cat_posts->the_post();
?>
<li>
<a class="post-title" href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title_attribute(); ?> Apk Android Download"><font color="#000"><?php the_title(); ?></font></a>
</li>
<?php
}
?>
</ol>
假设此小部件有10个项目。我如何编号(带div)这10个项目?
PS:我发现一些wp博客做到了这一点。 epdroid.com就是其中之一。
答案 0 :(得分:1)
所以你在while循环中打开外部,但是你继续在while循环中关闭它,试试这段代码:
echo '<ol>';
$i = 0;
while ( $cat_posts->have_posts() )
{
$cat_posts->the_post();
?>
<li><div class="a"><?php echo $i++ + 1; ?> </div>
<a class="post-title" href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title_attribute(); ?> Apk Android Download"><font color="#000"><?php the_title(); ?></font></a>
</li>
<?php } //end of the while loop ?>
</ol>