'OFFSET'=> 1(WordPress)是什么意思

Kar*_*sca 0 php wordpress

我有这个用于wordpress随机帖子插件的php代码:

<?php
global $post;
$tmp_post = $post;
$args = array( 'numberposts' => 5, 'orderby' => 'rand', 'post_status' => 'publish', 'offset' => 1);
$rand_posts = get_posts( $args );
foreach( $rand_posts as $post ) : ?>
    <li><h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2><p><?php the_excerpt(); ?>
    </p></li>
<?php endforeach; ?>
</ul>
<?php $post = $tmp_post; // reset the $post to the original ?>
Run Code Online (Sandbox Code Playgroud)

我想知道代码的含义是什么'offset' => 1.我已经了解其他人如:

  • Numberpost - 您想要显示多少个帖子?
  • Orderby - 从我们的博客文章列表中随机选择.
  • Post_status - 仅选择处于"发布"状态的博客帖子.
  • 抵消 - ???

谁能为我定义这个.

MrC*_*ode 7

偏移量用于分页.来自文档:

offset(int) - 替换或转移的帖子数.注意:设置偏移参数将忽略分页参数.