wordpress rest api v2 how to list taxonomy terms?

后端 未结 7 1846
情歌与酒
情歌与酒 2021-02-15 11:23

i am new to v2, i use v1 for long time, currently upgrade to v2, i try to get all the terms belong to specific custom taxonomy.

In v1 i can do this to get terms /taxonom

7条回答
  •  轻奢々
    轻奢々 (楼主)
    2021-02-15 11:52

    Taxonomy terms are simply called this way:

    https://yoursite.com/wp-json/wp/v2/the-taxonomy-slug
    

    For instance, to answer your question:

    https://yoursite.com/wp-json/wp/v2/location_category
    

    From terminal:

    curl -X GET -i http://www.example.com/wp-json/wp/v2/location_category
    

提交回复
热议问题