wordpress 文章列表里循环加入序列数字

wordpress 文章列表里循环加入数字

说明:如果$i=0表示从0开始循环,如果$i=1表示从1开始循环,从几都可以,有多少条li就会自动循环到几。

<?php  query_posts('showposts=10&cat=1'); //1可指定栏目
$i=1;
while(have_posts()) : the_post(); ?> 


<li><?php echo '0'.$i;$i++; ?><li>//数字前可加0或者文字

 
<?php 
endwhile; 

?>
	
QR:wordpress 文章列表里循环加入序列数字