我想回顯作爲背景圖像的帖子的特色圖像。我已經看到了一些應該可能的地方,但我似乎無法讓它爲我自己工作。WordPress的精選圖像作爲背景
//Here i get the image as a thumbnail
<?php
if (has_post_thumbnail()) {
$image = the_post_thumbnail('thumbnail');
}
?>
// Here i try to get it as a background image and nothing
<div style="width:405px;height:277px;background-image:url('<?php echo $image; ?>');">
<img src="<?php bloginfo('template_url'); ?>/images/foreground.png"/>
</div>
但是,如果我用這個,我可以回聲出縮略圖
<?php echo '<img src="' . $image . '"/>'; ?>
我覺得我失去了一些東西小,愚蠢的,但它是什麼?
它看起來像你的努力,使圖像的div的背景是什麼? 使用這個頁面背景...'body {background-image:url('<?php echo $ image;?>');}' – stink
是的,我正在嘗試使div的特徵圖像不是body – Travis