wp-api-meta-endpoints icon indicating copy to clipboard operation
wp-api-meta-endpoints copied to clipboard

Legacy Feature plugin for Meta Endpoints. Use register_post_meta & register_meta with `'show_in_rest' => true` instead.

Results 10 wp-api-meta-endpoints issues
Sort by recently updated
recently updated
newest added

To avoid multiple posts, is there any way to send multiple meta key/value pairs through the endpoint? I expect something like this to work: [ { "key":"test_key", "value":"test value here"...

Does the plugin support deletes? I am getting an error stating that it does not. I just want to know if that is an accurate error, or whether I might...

Hi, I was having problems getting updates to and creation of postmeta working until I installed your plugin, and then it started working for the built in post type, but...

This is a first pass at new-style meta support for the REST API. With the [new `register_meta` support in 4.6](https://core.trac.wordpress.org/ticket/35658), we can now support meta fully, as it's actually a...

This PR https://github.com/WP-API/WP-API/commit/32e1940989fa8b53b2044b9a088df66ccb44589e removed meta links from Post controller responses in the WP-API plugin. This plugin doesn’t add them back in, though, so they're gone everywhere. I looked for a...

I've been working through adding in public contexts and using the additional bits in the discussion here: [https://core.trac.wordpress.org/ticket/35658](Provide additional data for registered meta through register_meta) and realised that the way...

Because each endpoint is more or less the same, we should have an abstraction for running the same tests against all types of meta endpoints.

Currently in the Post Meta unit test class the invalid meta id check will change the value of the meta_id to `-1` which does not perform the action I think...

When I was creating some unit tests for the `/users` endpoint I noticed that the `get_items()` function was retrieving meta data using a custom `$wpdb->get_results()` query. I think this is...