Description
This plugin will add separate WordPress REST API (v2) endpoint, with all available terms (all used categories, tags and custom taxonomies).
It is very useful when you need to create some filters into your app, with lists of all available terms.
For example what can you get, using wp-json/wp/v2/all-terms
request (where categories and tags – standart taxonomies, and technologies – custom created taxonomy):
{
categories: [
{
term_id: 9,
name: "Downloads",
slug: "downloads",
term_group: 0,
term_taxonomy_id: 9,
taxonomy: "category",
description: "",
parent: 0,
count: 1,
filter: "raw"
},
term_id: 1,
name: "Uncategorized",
slug: "uncategorized",
term_group: 0,
term_taxonomy_id: 1,
taxonomy: "category",
description: "",
parent: 0,
count: 4,
filter: "raw"
},
{
term_id: 3,
name: "Wordpress",
slug: "wordpress",
term_group: 0,
term_taxonomy_id: 3,
taxonomy: "category",
description: "",
parent: 0,
count: 2,
filter: "raw"
}
],
tags: [
{
term_id: 16,
name: "First tag",
slug: "first-tag",
term_group: 0,
term_taxonomy_id: 16,
taxonomy: "post_tag",
description: "",
parent: 0,
count: 1,
filter: "raw"
},
{
term_id: 17,
name: "Second tag",
slug: "second-tag",
term_group: 0,
term_taxonomy_id: 17,
taxonomy: "post_tag",
description: "",
parent: 0,
count: 1,
filter: "raw"
}
],
technologies: [
{
term_id: 15,
name: "jQuery",
slug: "jquery",
term_group: 0,
term_taxonomy_id: 15,
taxonomy: "technologies",
description: "",
parent: 0,
count: 1,
filter: "raw"
},
{
term_id: 14,
name: "Wordpress",
slug: "wordpress",
term_group: 0,
term_taxonomy_id: 14,
taxonomy: "technologies",
description: "",
parent: 0,
count: 1,
filter: "raw"
}
]
}
Check my other useful rest-api plugins: https://wordpress.org/plugins/tags/andrew-magik-rest-api.
Installation
- Double check you have the WordPress REST (v2) API installed and active
- Upload the plugin folder to the
/wp-content/plugins/
directory, or install the plugin through the WordPress plugins screen directly. - Activate the plugin through the ‘Plugins’ screen in WordPress
FAQ
- What is the URL of this new WordPress REST API (v2) endpoint?
-
You get get all available terms using GET request:
http://yoursite.name/wp-json/wp/v2/all-terms - When this plugin is useful?
-
This plugin is very useful when you want to create filters, or lists of all available categories/tags (for example tag cloud).
- Do you have other useful REST-API plugins?
-
Yes, I have. You can check them by tag: https://wordpress.org/plugins/tags/andrew-magik-rest-api.
Avis
Contributeurs & développeurs
« WP REST API – All Terms » est un logiciel libre. Les personnes suivantes ont contribué à cette extension.
ContributeursTraduisez « WP REST API – All Terms » dans votre langue.
Le développement vous intéresse ?
Parcourir le code, consulter le SVN dépôt, ou s’inscrire au journal de développement par RSS.
Historique des changements
1.0
- Initial release!