リファレンスを見ても方法が書いていないため、雰囲気で以下で試みましたが駄目でした。
APIで新規投稿時にカスタムフィールドに値を入れるにはどのように記述するべきでしょうか?
require 'rest-client' params = { title: 'hoge', content: "テスト", meta: { st_titlewords: "テスト" } } RestClient.post( WP_POST_URL, params.to_json)
同じように悩んでいる人の投稿の回答を読んでも投稿時には必要ないかと。
https://wordpress.stackexchange.com/questions/380513/add-post-meta-fields-when-creating-a-post-using-wordpress-rest-api
上記の他に、以下も試してみました。
ruby
1params = { 2 title: 'hoge', 3 content: "テスト", 4 meta: ["st_titlewords" => "テスト"] 5} 6 7params = { 8 title: 'hoge', 9 content: "テスト", 10 meta: ["key"=> "st_titlewords", "value"=> "テスト"] 11}
あなたの回答
tips
プレビュー