通过WP Rest API创建包含自定义字段的帖子

时间:2017-08-27 17:10:09

标签: wordpress advanced-custom-fields

我正在做一个IONIC应用程序,该项目需要通过Wordpress API创建一个带有自定义字段的帖子(我使用ACF Pro和Aires ACF到REST API),我可以使用REST API创建一个普通帖子,甚至因此,如果我在Wordpress管理界面中创建帖子,则不会创建或指定ACF字段,仅为帖子创建它们。

我正在阅读ACF到REST API的文档,但我只看到编辑和显示功能。这是否意味着后元必须存在?那么如何为帖子“创建”它们

提前感谢您的帮助

祝你好运

phpadmin帖子创建:

phpadmin post creating

缺少后元:

absence of post meta

1 个答案:

答案 0 :(得分:0)

$json = file_get_contents('PATH/TO/FILE.json');
function the_json_contents($json_to_get){

            $json_in_array = json_decode($json_to_get, true); //json string to array

            return $json_in_array;
        }
function do_stuff_do_json() {
    $json_array = the_json_contents($json);
    foreach($json_array['id'] as $js) { //assuming we have an 'id' key
        $somevariable  = $js['someKey'];
        $somevariable2 = $js['someOtherKey'];
    } 

}

参考this solution