wordpress文章列表前显示123数字序列

2022-11-22,,,

wordpress文章列表前显示123数字序列

很多的网站侧边栏或量CMS网站的模块内的文章标题列表都是通过数据序列来排列的,那如何在wordpress主题中实现文章列表前面的123数字循环序列呢,其实很简单,只要应用到下面的代码就可以实现一个简单的从1开始的数字序列了。

<?php if (have_posts()) : ?>
<?php $i=1; while (have_posts()) : the_post(); ?>
<li>
<span class="num"><?php echo $i;$i++; ?></span><?php the_title();//标题 ?>
</li>
<?php endwhile; ?>
<?php else : ?>
<?php endif; ?>