我正在尝试使用节点wpapi获取所有类别的完整列表。但我不能那样做
我使用wp.categories()
, 但它只返回最多包含10个类别的响应。实际上,有12个类别。
我在下面使用的代码。
wp.categories().then( (res) => {
console.log(res.length);
});
let categories = await wp.categories();
console.log(categories.length);
以上两个代码均已返回
10
.
是否有可选参数或其他方法来获取所有类别的完整列表?我该怎么办?