私は画像フィールドを持つカスタムメタボックスを持っている、私はこのメタボックス、メタボックスコードにWP管理者から画像をアップロードすることができます
array(
'name' => 'Burst Image',
'desc' => 'Crop your image to exact dimension before upload!',
'id' => 'burst_img',
'type' => 'image'
)
メタボックスを取得するための$burst_img= get_post_meta( $post->ID, 'burst_img', true );
のようなコードがありますが、うまくいきません。メタボックス画像を取得するにはどうすればよいですか。
通常、カスタムメタボックスの画像を表示するためのWordPress関数はこれです<?php wp_get_attachment_image_src( $attachment_id, $size, $icon ); ?>