首页 > 解决方案 > 如何从 wordpress 帖子中提取图像以将其显示在屏幕上?

问题描述

我正在尝试为我的帖子显示类似缩略图的内容。有没有可以做到这一点的wordpress功能?我阅读了有关 wordpress 特色图片的信息,但我没有看到在 wordpress 管理页面上设置一个的选项。

我也尝试过使用the_post_thumbnail(),但没有用。

这就是我的 div 目前的样子:

<div class="card" style="width: 22rem;">
          <img src="<?php the_post_thumbnail(); ?>" class="card-img-top" alt="...">
          <div class="card-body">
            <h5 class="card-title"><?php the_title() ?></h5>
            <p class="card-text">Random Card content</p>
          </div>
</div>

标签: phpwordpresstwitter-bootstrap

解决方案


只需使用:

<?php the_post_thumbnail(); ?>

像下面的代码:

<div class="card" style="width: 22rem;">
      <?php the_post_thumbnail('post-thumbnail', ['class' => 'card-img-top']);?>

      <div class="card-body">
        <h5 class="card-title"><?php the_title(); ?></h5>
        <p class="card-text">Random Card content</p>
      </div>
</div>

使用时the_post_thumbnail()不要使用额外的img标签!


推荐阅读