Este plugin no se ha probado con las últimas 3 versiones mayores de WordPress. Puede que ya no tenga soporte ni lo mantenga nadie, o puede que tenga problemas de compatibilidad cuando se usa con las versiones más recientes de WordPress.

REST API Meta Support

Descripción

Automatically stores the meta data from the meta field of a wordpress REST API posts (/wp-json/wp/v2/posts) or pages (/wp-json/wp/v2/pages) POST in the meta data associated with the created page or post using update_post_meta. The key / value information sent in the REST POST 'meta' object field is stored as both 'key' and '_key' to support different plugin formats.
For example, if trying to set the YOAST SEO Plugin values dynamically when creating a page from the REST API, you would simply add the fields to the meta field of the REST POST data when you POST the endpoint, and the plugin values will be added to the page:

{
...
  'meta': {
    'yoast_wpseo_title': "Title set from REST call"
    'yoast_wpseo_metadesc': "Meta description set from REST call"
  }
...
}

Use this plugin when dynamically creating pages with the WordPress REST API to support modifying plugin settings for pages/posts created using the REST API!

A guide on how to use this plugin to generate a page/post with plugins configured from the REST API is available at Pericror.

Inspired as a broader alternative to wp-api-yoast-meta.

Compatible with the wordpress rest api version 2.

Reseñas

13 de junio de 2020
This plugin was developed and used to generate pages with a review plugin configured programatically using the rest API per page and works as described.
Leer todas las 2 reseñas

Colaboradores y desarrolladores

"REST API Meta Support" es un software de código abierto. Las siguientes personas han colaborado con este plugin.

Colaboradores

Traduce "REST API Meta Support" a tu idioma.

¿Interesado en el desarrollo?

Revisa el código , echa un vistazo al repositorio SVN o suscríbete al registro de desarrollo por RSS.

Registro de cambios

1.0

  • Initial Release