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

Bat*_*man 4 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(); ?>
Run Code Online (Sandbox Code Playgroud)

Joã*_*ann 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(); ?>
Run Code Online (Sandbox Code Playgroud)

  • 将偏移量更改为1,因此OP明确清楚. (3认同)
  • 这个答案是错误的。设置偏移量将破坏分页。 (2认同)