我如何在 WP 中显示 post 偏移量?

How can i display post offsets in WP?

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

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

而且我想知道有没有办法把wp的offset功能合并进去

是的,你可以

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

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

看看documentation.