📖wordpress调用文章序号递增

好久没更新了来更新一个小知识一下,今天更新下关于wordpress的小知识

wordpress调用文章序号递增
在调用文章时前面有着排行的数字,但是wordpress并没有自带的序列号,下面是我的方法
我原来的调用方法是循环获取

<?php if (have_posts()) :?>
<?php query_posts('cat=栏目ID' . $mcatID. '&caller_get_posts=栏目ID&showposts=调用数量'); ?>
<?php while (have_posts()) : the_post();?>
//循环获取的内容
<?php endwhile;?>
<?php endif; wp_reset_query(); ?>

要获取序列号只需加上简单的几个代码,如下:

<?php if (have_posts()) :$xunshu_i=0;?>//这里xunshu_i是循环的变量
<?php query_posts('cat=栏目ID' . $mcatID. '&caller_get_posts=栏目ID&showposts=调用数量'); ?>
<?php while (have_posts()) : the_post();$xunshu_i++;?>//根据调用的数量来递增
//循环获取的内容
<?php endwhile;?>
<?php endif; wp_reset_query(); ?>

是不是很简单

标签

🧐发表评论

您必须启用javascript才能在此处查看验证码