我想获取一篇文章的特色图片,并在文章的style=“background:url()”中使用它。我原以为这样就可以了,但唉,我错了,因为这样会输出整个(img src=“>内容)。
<div style="background: url(<?php the_post_thumbnail( \'thumbnail\' ); ?>
) !important;">adasdasdasd </div>
我尝试获取\\u post\\u缩略图,但认为格式不对。
有什么想法吗?
最合适的回答,由SO网友:Stephen Harris 整理而成
您只需要检索缩略图的src属性:
$thumb_src = wp_get_attachment_image_src ( get_post_thumbnail_id(\'thumbnail\'));
$thumb_src
然后是一个数组,包含缩略图的url、宽度和高度。所以有点像。。。
<div style="background: url(<?php echo $thumb_src[0];?>
) !important;">adasdasdasd </div>
应该有用。