-
Notifications
You must be signed in to change notification settings - Fork 191
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add a guide for "how to work with meta" #280
Comments
On the WordPress side of things you'll need to set things up so that you can read and post meta. See http://v2.wp-api.org/extending/modifying/#read-and-write-a-post-meta-field-in-post-responses |
A better option these days is to use first-party meta support, introduced in 4.6, detailed here in this API status update post and further explained in the README from the pull request for meta handling |
@kadamwhite is there some change I have a meta field upvote for my custom post and I have registered using register_meta() , as suggested and when I use a get request , I am getting the meta values like..
When I try to update it works via postman if I pass the body as
But the node-wpapi does not take this, if I pass it as
It does not update the values. |
Merging #286 into this issue; documenting how to work with custom meta is currently our top-priority docs issue |
When you create/update post, you pass wpapi.posts().create( {
title: 'Your Title',
content: ' Your content',
status: 'publish',
meta: {
custom_meta_key: 'something'
}
} ).then( function( response ) {
// whatever
} ); On the server side, you must use But if you are using |
@dimadin Sorry, but could You be more specific, where exactly on server side I should change something to get meta work? |
Messed with the same problem, being total noob in wordpress infrastructure. Solved by putting
into functions.php of theme. This unlocked me:
|
@calemb @dmdb In WordPress 5.0 note that this will change to |
I've been struggling for a few days and finally found how to deal with it.
I only test the code with curl in my terminal:
|
Responding to some prior questions in this thread, @chattes you should be using the same structure in Postman as in this library, so I'm unclear on why you believed you needed to separate the
@b02902032 What you have there looks like it works (and I assure you, even seasoned contributors get confused by the inconsistent property naming!) For a post, page, or other custom post type resource though I'd stick with |
Here's how to add a boolean meta field to tags and posts. function prefix_register_meta_fields()
{
$term_types = ['post_tag'];
$post_types = ['post'];
$key = 'the_example_key';
$args = [
'type' => 'boolean',
'description' =>
'An the_example_key boolean value.',
'single' => true,
'show_in_rest' => true
];
foreach ($post_types as $type) {
register_post_meta($type, $key, $args);
}
foreach ($term_types as $type) {
register_term_meta($type, $key, $args);
}
}
add_action('rest_api_init', 'prefix_register_meta_fields'); And then update it on some post of your choosing. wp.tags()
.id(TAG_ID)
.update({
meta: {
the_example_key : true
}
})
wp.posts()
.id(POST_ID)
.update({
meta: {
the_example_key : true
}
}) |
How do you add multiple meta values with the same key? Using a single object only allows attaching of 1 meta key. |
I did not find an example of what to do if you need to add several values for one key. |
Hi, i tried to update post meta, when i created posts, but nothing happened
It's possible with node-wpapi?
wp.song().create({ title: '1', content: 'Your post content', status: 'publish', meta: {key: 'youtube', value: '12'}, }).then(function( response ) { console.log( response.id ); })
The text was updated successfully, but these errors were encountered: