“$ html。='<img src="&#39;.wp_get_attachment_url( $id ).&#39;"/>'的正确用法是什么?

时间:2013-12-23 01:45:01

标签: php html wordpress formatting

我有以下php变量

if (has_post_thumbnail( $post->ID ) ): $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'single-post-thumbnail' );

我在wordpress模板中输出如下:

<img src="<?php echo $image[0]; ?>" />

但是,我现在必须以下列格式输出它:

$html .= '<img src="'.image().'" />';

(还有一些$ html行)。我该如何正确实现?

1 个答案:

答案 0 :(得分:2)

尝试,

$html .= '<img src="'.$image[0].'" />';

(我希望我不会在这里误解这个问题)