我有以下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行)。我该如何正确实现?
答案 0 :(得分:2)
尝试,
$html .= '<img src="'.$image[0].'" />';
(我希望我不会在这里误解这个问题)