如何更改WordPress JSON API每页加载的帖子数量。
默认值为25,因为互联网连接较少,我希望减少它。
答案 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