WordPress ACF get_fields不返回任何数据

时间:2018-07-31 07:06:40

标签: wordpress advanced-custom-fields

当我使用get_fields(5)时,它不返回任何数据

这就是它的返回结果

Array
  (
     [] => 
  )

这是我的数据库

enter image description here

这就是我添加数据的方式

$post_id = wp_insert_post(
            array(
                'post_type'   => $this->post_type,
                'post_status' => 'publish'
            )
        );
foreach($args as $key => $val){
   update_field($key,'field_' . $key,$post_id);
   update_post_meta($post_id, $key, $val);
}

0 个答案:

没有答案