最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

How do I add meta when creating a post with rest api?

matteradmin6PV0评论

I have this code that inserts a post into WordPress site using Rest API:

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $row->site_url."/wp-json/wp/v2/posts");
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
    'Content-Type: application/json',
    'Authorization: Bearer '.$row->token
));
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode([
    "title"=>$row->title,
    "content"=>$row->content,   
    "excerpt"=>$row->excerpt,                                                                                                                               
    "status"=>'publish',
    "categories"=>(int)$row->c_wp_id
]));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
$result = curl_exec($ch);
$result_decoded = json_decode($result);
$post_id=$result_decoded->id;

I need to add meta , how do I do that?

I have tried this but it's not saving the meta:

$tst = (object)array(
    'some_key' => 'some_test_again'
);

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $row->site_url."/wp-json/wp/v2/posts/".$row->wp_post_id);
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
    'Content-Type: application/json',
    'Authorization: Bearer '.$row->token
));
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode([
    "title"=>$post_array['title'],
    "content"=>$post_array['content'],  
    "excerpt"=>$post_array['excerpt'],                                                                                                                          
    "meta"=>$tst
]));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
$result = curl_exec($ch);
$result_decoded = json_decode($result);
$post_id=$result_decoded->id;
Post a comment

comment list (0)

  1. No comments so far