我正在尝试从元值设置背景图像。我也很成功。但如果元映像未设置输出
<div id="pricing" style="background: url(\'\')"></div>
但我不想表现出来
background: url(\'\')
如果没有设置元值。获取图像的我的代码
$bgimage= get_post_meta( $post->ID, \'settings_image\', true );
$img=background-image: url(\'.wp_get_attachment_url( $bgimage ).\');
要显示
style="<?php echo $img;?>"
我试过了
if(isset($bgimage)){
$img=background-image: url(\'.wp_get_attachment_url( $bgimage ).\');
}