标签: wordpress
这是我从类别
<?php query_posts('cat=17&showposts=1');?> <?php while ( have_posts() ) : the_post(); ?> <?php the_title();?> <?php endwhile;?>
现在我想要的是获得该类别中的第二篇帖子。有什么想法吗?
答案 0 :(得分:3)
将offset参数设置为1。
offset
query_posts('cat=17&showposts=1&offset=1');
Parameters Reference