Reputation: 79
Has anyone succeeded printing Yoast SEO plugin data into WP REST API json? I was able to grab the primary category, but I have yet to find out how to grab SEO title and meta description.
Upvotes: 3
Views: 8320
Reputation: 171
Found this nice plugin: https://github.com/ChazUK/wp-api-yoast-seo
For updating the values you can try adding a callback to "update_callback" in the "register_rest_field" function as in the doc example:
https://developer.wordpress.org/rest-api/extending-the-rest-api/modifying-responses/
Upvotes: 4