我目前正在构建一个使用Wordpress api的Ionic应用程序。我可以使用以下方法检索特定类别中的帖子:
// Retrieve filtered data for the categories to show posts.
function getCategoryName(categoryName) {
return ($http.get(svampeURL + \'posts?categories=\' + categoryName).then(handleSuccess, handleError));
}
问题是它只返回10,因为这是某种默认值。我尝试过使用per\\u page=50参数,但似乎不起作用。我还阅读了api的文档,似乎他们没有描述这个场景。
有没有办法在特定类别中获得10个以上的职位?如何更改此默认返回?