在我的侧边栏中,我显示了最新的wordpress帖子列表,如下所示: wp_get_archives( '类型= postbypost&安培;限制= 10');
这也会显示指向我博客首页当前可见的帖子的链接。如果这些帖子在主页上可见,那么在列表中包含这些帖子是没有意义的。
在codex中,我找不到排除首页帖子的选项。 我该怎么做?
答案 0 :(得分:1)
我认为wp_get_archives没有偏移功能 http://codex.wordpress.org/Function_Reference/wp_get_archives
您必须使用get_posts。您可以使用前面提到的offset paramter或者进行设置,以便显示10 random posts!
答案 1 :(得分:1)
你也可以使用WP_Query,看起来像这样:
$recent_posts = new WP_Query('showposts=3&offset=3&');
答案 2 :(得分:-1)
使用'offset'参数,如下所示:
wp_get_archives('type=postbypost&limit=10&offset=0');
当然,您必须将0替换为要跳过的所需帖子数。