img src中的PHP变量

时间:2012-09-28 19:19:36

标签: php

  

可能重复:
  use Img source with php variable

我在这里有一个小问题,我确信这是一个简单的问题,但我是在terribad。

我正在使用一个WP插件,它会在某个时刻拉出附加到帖子的第一张图片,在我的例子中是用户在业务提交时上传的图片(它是商业目录插件)。

我不希望这样,相反,我想要thumbshots.com生成缩略图。我的代码看起来像这样(我替换了 $ thumbnail 的默认值):

if (!$thumbnail && wpbdp_get_option('use-default-picture'))

$thumbnail = 'http://images.thumbshots.com/image.aspx?cid=HIPFHapOLHw%3d&v=1&w=283&url=URLHERE';

现在,应该放置一个实际的URL而不是URLHERE,即列表的URL。由此创建:

<?php echo wpbusdirman_the_listing_meta('single'); ?>

我该怎么做?

非常感谢!

1 个答案:

答案 0 :(得分:0)

$thumbnail = 'http://images.thumbshots.com/image.aspx?cid=HIPFHapOLHw%3d&v=1&w=283&url=' . wpbusdirman_the_listing_meta('single');

$thumbnail = "http://images.thumbshots.com/image.aspx?cid=HIPFHapOLHw%3d&v=1&w=283&url=$wpbusdirman_the_listing_meta('single');

阅读:http://phphowto.blogspot.com/2006/12/concatenate-strings.html