Wordpress post_meta成JSON

时间:2014-06-13 13:51:37

标签: php json wordpress

也许有人知道如何将一些wordpress post_meta值编码为JSON文件? 试过像'x'=> get_post_meta($后> ID, 'geo_latitude',真),

我有表postmeta,其中一些key_meta有一些值,如geo_latitude和geo_langitude ..如何把它带入json文件?

1 个答案:

答案 0 :(得分:0)

像这样的东西

$meta = get_post_meta( $post->ID );
$data = json_encode($meta);
file_put_contents('json.txt',$data);
$read = json_decode(file_get_contents('json.txt'));