web-dev-qa-db-ja.com

Postmetaで一つのメタキーで配列を保存するにはどうすればいいですか?

私はpostmataに保存された配列を持っています、それぞれの配列キーはメタキーになります。 1つのメタキーで配列全体を保存するようにコードを変更したいです。どうやってするか?ありがとうございます。

$poddata = Array(
'pod_id' => $this->pod_id,
'url' => $this->url,
'name' => $this->name,
'description' => $this->description,
'service' => $this->service,
'status' =>$this->status,
'price' => $this->price
);

foreach ( $poddata as $k => $v ){

if ( get_post_meta( $this->id, $k ) == '' )
add_post_meta( $this->id, $meta_box, $v, true );

elseif ( $v != get_post_meta( $this->id, $k, true ) )
update_post_meta( $this->id, $k, $v );

elseif ( $v == '' )
delete_post_meta( $this->id, $k, get_post_meta( $this->id, $k, true ) );

}
15
Jenny

値をループする必要はありません。 update_post_meta($post_ID, {key}, {array of vals})を使うだけでいいのです。

<?php
$poddata = Array(
    'pod_id' => $this->pod_id,
    'url' => $this->url,
    'name' => $this->name,
    'description' => $this->description,
    'service' => $this->service,
    'status' =>$this->status,
    'price' => $this->price
    );

//Update inserts a new entry if it doesn't exist, updates otherwise
update_post_meta($post_ID, 'poddata', $poddata);
?>

それでおしまい!使用するためにそれを取得したら、次の操作を行います。

    $poddata = get_post_meta($post_ID, 'poddata');

$ poddataは値の配列です。

23