如何获得自定义的Metabox图像场?

时间:2013-08-28 作者:jothikannan

我有带有图像字段的自定义元框,我可以将图像从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图像?

1 个回复
最合适的回答,由SO网友:Bianca Petroiu 整理而成

通常,显示自定义元框图像的WordPress函数如下<?php wp_get_attachment_image_src( $attachment_id, $size, $icon ); ?>

结束

相关推荐

如何列出Metabox中的所有侧栏

我正在尝试向每个页面添加一个元框,该页面是所有已注册边栏的下拉列表,然后保存在自定义字段中。我在用这个metabox class我已经做到了这一点:// get registered Sidebars $sidebars = $GLOBALS[\'wp_registered_sidebars\']; foreach ( $sidebars as $sidebar ) { $sidebar_options[$sidebar[\'name\']] = $sidebar[\'na