如何限制wordpress中的查询结果让我说我想显示一个类别的最后4个帖子但是从第二行开始,我知道在MySql中是这样的:
select *
from table_name
limit 4, 1
在wordpress中应该是这样的:
('cat' => get_category_id($catname), 'posts_per_page' => 2, 1);
但它不起作用
答案 0 :(得分:2)
使用paged
(以及$paged
WordPress变量)参数。这里的所有信息:http://codex.wordpress.org/Pagination#Adding_the_.22paged.22_parameter_to_a_query
答案 1 :(得分:1)
我找到了解决方案,我只需要使用offset变量而不是paged。
点击此处了解详情
http://wordpress.org/support/topic/query_posts-offset-and-pagination