>"在wordpress php代码中的图像之后

时间:2016-08-05 14:32:36

标签: php wordpress

我使用php动态添加图像到wp中的帖子。我可以使用the_post_thumbnail();功能从帖子中提取帖子缩略图,但是在图片后面显示">。我试图使用以下行,但无法摆脱">

<img src="<?php echo the_post_thumbnail();?>">

我已经尝试过各种我能想到的方式,但无法弄明白。

请参阅图片下方的完整代码。

enter image description here] 1

<?php $query = new WP_Query( 'posts_per_page=5' ); ?>

<?php while ($query -> have_posts()) : $query -> the_post(); ?>

<div class="blog">
    <img src="<?php echo the_post_thumbnail();?>">
</div>

2 个答案:

答案 0 :(得分:0)

删除img标记并只回显the_post_thumbnail(),此函数已经处理了img标记。见here

<div class="blog">
    <?php echo the_post_thumbnail();?>
</div>

答案 1 :(得分:0)

如果你想使用你的img标签,因为你要嵌入某些类或某些类,你必须为缩略图网址提供资金:

the_post_thumbnail_url();

你可以指定()里面的大小 EJ:

the_post_thumbnail_url('full');