我有带有图像字段的自定义元框,我可以将图像从wp admin上载到此元框,元框代码
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 );
要获取metabox,但它不起作用,如何获取metabox图像?
最合适的回答,由SO网友:Bianca Petroiu 整理而成
通常,显示自定义元框图像的WordPress函数如下<?php wp_get_attachment_image_src( $attachment_id, $size, $icon ); ?>