php-如何通过cmb2获取上传的图片位置网址
作者:互联网
我在cmb2 metabox中做了一个图像添加文件字段
$FF_side_settings->add_field( array(
'name' => 'Upload background image',
'desc' => 'Upload an image or enter an URL.',
'id' => 'ff_image_upload',
'type' => 'file',
// Optional:
'options' => array(
'url' => true,
'add_upload_file_text' => 'Add image'
),
) );
我想获取图像位置并在div图像background-url中显示值
<div class="fun-bg " style='background-image: url("'.$image.'");'>
我使用了wp_get_attachment_image(get_post_meta(get_the_ID(),’ff_image_upload’,1),’medium’);为此,但我没有做到这一点.有人可以帮我找出我的问题在哪里并解决这个问题吗…………
解决方法:
OK wp_get_attachment_image()返回图像标签:
<img src="image_src" ... />
在您的情况下,您需要echo函数返回
<div class="fun-bg">
<?php echo wp_get_attachment_image( get_post_meta( get_the_ID(), 'ff_image_upload', 1 ), 'medium' ); ?>
</div>
或仅获取src属性,而不获取图像标签本身.
编辑:
我安装了此插件,并对图像metabox进行了一些测试.
因此,当您通过此插件添加图像时,它将在postmeta表中创建两个记录.首先是带有关键字post_value的元键ff_image_upload_id(在我的例子中是52),第二个是带有关键字ff_image_upload且value = image_path的键.
get_post_meta(get_the_ID(),’ff_image_upload’,1)将返回图像路径-http://host/site-name/wp-content/uploads/year/month/name.jpg
这是原始图像的路径,而不是“中”,“缩略图”或类似内容
get_post_meta(get_the_ID(),’ff_image_upload_id’,1)将返回post_id(52).
如果要使用wp_get_attachment_image()直接显示图像,则必须在帖子ID后面附加ID,因此必须这样使用:
<?php echo wp_get_attachment_image( get_post_meta( get_the_ID(), 'ff_image_upload_id', 1 ), 'medium' ); ?>
如果您需要图像的URL,则将返回中等图像的URL:
<?php wp_get_attachment_image_src( get_post_meta( get_the_ID(), 'ff_image_upload_id', 1 ), 'medium' )[0]; ?>
标签:wordpress-plugin,wordpress,php 来源: https://codeday.me/bug/20191119/2034183.html