这是因为the_post_thubmnail()
输出an<img>
标签因此,代码的结果如下所示:
<div class="bio-picture">
<img url="<img src="thumbnail/image/url.jpg" class="wp-post-image attachment-full">" class="headshot">
</div>
您的屏幕截图是浏览器选择如何处理损坏的HTML。
如果要输出帖子缩略图<img>
对于自定义类,请使用以下选项:
<div class="bio-picture">
<?php the_post_thumbnail( \'full\', array( \'class\' => \'headshot\' ) );?>
</div>
另外,请注意
img
标记的URl不是
url
, 它是
src
.