Wordpress循环从第三篇文章开始

时间:2013-09-15 10:37:02

标签: php wordpress

我搜索了很多,但我没有得到确切的答案,我希望我的Wordpress循环开始从最近的帖子顺序中按照“新闻”这样的类别从第三个帖子中选择两个帖子。我该怎么做? 就像在SQL中我想的那样

SELECT * FROM tbl ORDER BY date DESC  LIMIT 2,2;

1 个答案:

答案 0 :(得分:-1)

您可以尝试以下代码:

query_posts('offset=2&posts_per_page=2&cat=<id_of_cat>');
    while ( have_posts() ) : the_post(); 
    endwhile;

希望它有所帮助。