如何更改Wordpress JSON Api每页加载的帖子数量

时间:2015-11-24 05:25:28

标签: php json wordpress api

如何更改WordPress JSON API每页加载的帖子数量。

默认值为25,因为互联网连接较少,我希望减少它。

2 个答案:

答案 0 :(得分:1)

正如in the documentation所述,您可以在请求中使用count参数指定回复中的最大帖子数。

配置了用户友好永久链接的示例:

http://www.example.org/api/get_posts/?count=10

答案 1 :(得分:0)

如果你使用较新的WordPress版本,那么根据他们的文档

https://developer.wordpress.org/rest-api/reference/posts/#arguments

现在使用

per_page 参数..比如

https://www.example.org/api/get_posts/?per_page=100