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


How can I skip the first post in WordPress?

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

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

使用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(); ?>

使用偏移

$recentPosts = new WP_Query (
   array(
     'post_type'      => 'stiri',
     'post_status'    => 'publish',
     'posts_per_page' => 6, // all = -1
     'orderby'        => 'date',
     'order'          => 'DESC',
     'offset'         => 1
   )
);