We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
When calling, wp/v2/posts/1 (for instance), the following links are returned in the JSON response:
wp/v2/posts/1
"_links": { "http://v2.wp-api.org/term": [ { "embeddable": true, "href": "http://.../wp/v2/terms/category?post=1", "taxonomy": "category" }, // ... ] }
But when calling wp/v2/terms/category?post=1, all the available categories are returned instead of just the ones of post of id 1 in this example.
wp/v2/terms/category?post=1
1
When calling,
wp/v2/posts/1(for instance), the following links are returned in the JSON response:But when calling
wp/v2/terms/category?post=1, all the available categories are returned instead of just the ones of post of id1in this example.