标签: wordpress
WP是否只显示10个帖子列表?我使用此代码$latestPosts = new WP_Query('cat=5');来获取我拥有的所有帖子的列表。与此代码相比,我认为这应该有效:$latestPosts = new WP_Query('cat=5&posts_per_page=3');,限制为3个帖子。
$latestPosts = new WP_Query('cat=5');
$latestPosts = new WP_Query('cat=5&posts_per_page=3');
我有19个帖子,但在列表中我只得到10.默认情况下,我必须在代码中处理某种分页吗?
答案 0 :(得分:1)
将posts_per_page值更改为-1
posts_per_page
-1