Reputation: 73
How can i get custom taxonomy of my custom post in response of
/Wpjson/wp/v2/postName
I have made one from the ACF and second from custom coding in WordPress
Upvotes: 2
Views: 61
Reputation: 886
For getting custom taxonomy you can use following query.
query MyQuery {
allWordpressAcfResource {
nodes {
acf {
topics {
name
}
}
}
}
}
Upvotes: 3