挖主题在wordpress主题的仿站过程中时常会遇到cms文章模块组的调用,通常该分类下的首篇文章已经被调用为头条标题显示在焦点位置了,那么同分类下的文章就要从第二篇开始进行循环列表排序;否则就会出现重复文章;下面介绍大家一种代码调用的方法如下;
1 |
&offset=1 |
该段代码是指定不调用分类第一篇文章;offset=1后面的1是指不再调用前面的多少篇文章,如果改成offset=2就代表从第三篇文章开始调用。
下面是完整的实现wordpress指定分类从第二篇文章开始调用代码:
1 2 3 4 5 6 7 8 9 |
<?php if (have_posts()) : ?> <?php query_posts('cat=2' . $mcatID. '&caller_get_posts=1&showposts=10&offset=1'); ?> <?php while (have_posts()) : the_post(); ?> <li> <a href="<?php the_permalink() ?>" title="<?php the_title(); ?>" target="_blank"> <?php the_title(); ?></a> </li> <?php endwhile; ?> <?php endif; wp_reset_query(); ?> |