【发布时间】:2013-11-26 23:49:45
【问题描述】:
我正在尝试将帖子的特色图片作为背景图片回显。我见过几个地方这应该是可能的,但我似乎无法让它为我自己工作。
//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; ?>');} -
是的,我正在尝试制作 div 的特色图片而不是 body