I’m trying to get all categories of my wordpress site with rest api :
JavaScript
x
4
1
axios.get('https://../wp-json/wp/v2/categories').then((res) => {
2
console.log(res.data);
3
});
4
But it only returns me the latest 10 by default .
Query
JavaScript
1
2
1
/wp-json/wp/v2/categories
2
How can I get all categories of a wordpress site with rest api?
Advertisement
Answer
you can pass -1 in per_page argument for fetch all categories.
JavaScript
1
4
1
axios.get('https://../wp-json/wp/v2/categories?per_page=-1').then((res) => {
2
console.log(res.data);
3
});
4
please check reference link: https://developer.wordpress.org/rest-api/reference/categories/#arguments