获取类别中的第二篇文章 - WordPress

时间:2014-02-11 05:48:38

标签: wordpress

这是我从类别

获得最后一篇文章的方式
<?php query_posts('cat=17&showposts=1');?>
<?php while ( have_posts() ) : the_post(); ?>   
<?php the_title();?>
<?php endwhile;?>

现在我想要的是获得该类别中的第二篇帖子。有什么想法吗?

1 个答案:

答案 0 :(得分:3)

offset参数设置为1。

query_posts('cat=17&showposts=1&offset=1');

Parameters Reference