如何在WP中显示帖子偏移?

时间:2016-03-22 06:30:02

标签: php wordpress wordpress-theming

我实际上正在使用这段简短的代码片段在我的网站上显示一些内容。

<?php
    global $post;
    $myposts = get_posts('numberposts=3');
    foreach($myposts as $post) :?>
                    content
<? php endforeach; ?>

我想知道是否有办法将wp的偏移功能合并到其中。

1 个答案:

答案 0 :(得分:0)

是的,你可以

<?php
    global $post;
    $args = array(
        'numberposts' => 3,
        'offset'      => 0,
    );
    $myposts = get_posts($args);

    foreach($myposts as $post) : setup_postdata( $post ); ?>
                    content
<?php endforeach; ?>

只需看看documentation