我的类别存在问题,显示该类别的所有帖子。我的代码在这里:Category Loop
我已将其设置为在3列中显示我的帖子。 You can see it in action here。有48个帖子应该出现,但出于某种原因我只能得到10个。
有什么建议吗?
答案 0 :(得分:0)
10是查询变量posts_per_page的默认值。您使用have_posts()和内部Wordpress机制来检索帖子,因此您受此号码的限制。您可以这样更改:
query_posts( 'posts_per_page=50' );
请参阅此页:http://codex.wordpress.org/Function_Reference/query_posts