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 循环开始从最近帖子中的第三个帖子中选择两个帖子,按“新闻”等类别排序。我该怎么做?就像我认为的 SQL 一样
SELECT * FROM tbl ORDER BY date DESC LIMIT 2,2;
你可以试试下面的代码:
query_posts('offset=2&posts_per_page=2&cat=<id_of_cat>'); while ( have_posts() ) : the_post(); endwhile;
希望能帮助到你。