查询帖子以获取除最新帖子之外的所有帖子

时间:2011-05-31 作者:John Hunt

我想使用query\\u posts()函数将帖子限制为我的一个模板上除最新之外的所有帖子。这是因为最新的帖子在它自己的页面上是一个单独的特色项目,而其余的帖子将在另一个页面上。很容易在我的一个模板上显示最新的模板:

<?php query_posts(array(\'category_name\' => \'Recipe of the Week\', \'posts_per_page\' => 1)); ?>
所以基本上我希望这样,但只限于第一篇帖子。

谢谢你,约翰。

2 个回复
SO网友:John Hunt

我必须使用WP\\u查询类:

$the_query = new WP_Query(array( \'category_name\' => \'Recipe of the Week\', \'offset\' => 1 )
然后在模板中引用我的新查询对象,如下所示:

<?php while ( $the_query-> have_posts() ) : $the_query->the_post(); ?>

SO网友:John Hunt

“每周食谱”,“每页发布”=>-1,“偏移量”=>1));?>

我认为这可能会成功。。只是测试。

结束

相关推荐