Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的博客中,我做了一个侧边栏,其中显示了一些文章。它是通过查询 wordpress 来完成的:
$pq = new WP_Query(array( 'post_type' => $ptype, 'showposts' => $pshow ));
我的问题是:我怎样才能从第 6 次而不是从上次发布的文章中检索文章?太感谢了。
或者,如何提取与最后六个帖子不同的随机帖子?
提前致谢。
添加'offset' => n到您的查询以跳过前 n 个结果。
'offset' => n