如何跳过WordPress中的第一篇文章?

时间:2012-07-28 01:14:30

标签: php wordpress

如何跳过WordPress中的第一篇文章?

<?php
$recentPosts = new WP_Query();
$recentPosts->query(array('showposts' => 6,'post_type' =>array('stiri')));
?>
<?php while ($recentPosts->have_posts()) : $recentPosts->the_post(); ?>

1 个答案:

答案 0 :(得分:14)

使用offset参数:

<?php
$recentPosts = new WP_Query( 'offset=1' ) );
$recentPosts->query(array('showposts' => 6,'post_type' =>array('stiri')));
?>
<?php while ($recentPosts->have_posts()) : $recentPosts->the_post(); ?>