0

Is there a way to get a list of categories (just the name and maybe date) from WP API? I don't want to see the posts within the category, just the categories.

Mark B
  • 167
  • 3
  • 13

1 Answers1

0

This will give you a list of all registered taxonomies :

http://domain.com/wp-json/wp/v2/taxonomies/

Note that custom taxonomies needs to be enabled in rest, more info here: http://v2.wp-api.org/extending/custom-content-types/

NiviJah
  • 179
  • 1
  • 1
  • 8