bostondv/wp-api-meta-data

Adds post and user meta data to WP REST API endpoints.

1.1.1 2016-03-08 21:12 UTC

This package is not auto-updated.

Last update: 2024-05-11 16:45:38 UTC


README

A WordPress plugin that adds post and user meta data to the WP API endpoints. Supports getting and setting post and user meta.

Requires WP API Version 2.0 Beta 12 or higher.

Usage

Listing and Retrieving a Post

A meta field will be added to the response data containing an array of all post meta data.

Creating and Updating a Post

Add a meta object to the POST data of your request containing key / value pairs of the meta data you want to update or add. Response will contain the new meta data.

Listing and Retrieving a User

A meta field will be added to the response data containing an array of all user meta data.

Creating and Updating a User

Add a meta object to the POST data of your request containing key / value pairs of the meta data you want to update or add. Response will contain the new meta data.

Deleting Meta Keys

To delete a meta key entirely, send the key / value pair with a null value and that key will be deleted.