0

可能重复:
将 Img 源与 php 变量一起使用

我在这里有一个小问题,我相信这是一个简单的问题,但我在 php 方面非常糟糕。

我正在使用一个 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'); ?>

我该怎么做?

非常感谢!

4

1 回答 1

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

于 2012-09-28T19:26:53.557 回答