如何在最近的帖子Wordpress中添加缩略图

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在最近的帖子Wordpress中添加缩略图相关的知识,希望对你有一定的参考价值。

我在wordpress上使用bootstrap主题。我最近的帖子只显示标题和一个小文本,但没有原始帖子的缩略图。

我需要最近的帖子在右边显示一个小缩略图,然后是标题和小文本

这是我的代码

       <div class = "col-md-10">
            <?php while(have_posts()) : the_post(); ?>
                <div class="well well-sm">
                <h3>
                    <a href = "<?php the_permalink(); ?>"><?php the_title(); ?></a>
                </h3>
                <p>
                    <?php the_excerpt(); ?>
                </p>
                <small class="text-muted"><?php the_time('j F Y'); ?></small>
                </div>
            <?php endwhile; wp_reset_query(); ?>
        </div>
答案

假设您对帖子缩略图有主题支持,您只需添加此代码即可显示精选图片缩略图:<?php the_post_thumbnail(); ?>

要添加主题支持,请将其添加到functions.php文件:add_theme_support( 'post-thumbnails' );

以上是关于如何在最近的帖子Wordpress中添加缩略图的主要内容,如果未能解决你的问题,请参考以下文章

PHP Wordpress将帖子缩略图添加到RSS源

WordPress向提要添加帖子缩略图

如何在 wordpress 中以编程方式显示自定义帖子类型的图像缩略图。?

Wordpress向RSS提要添加帖子缩略图

Wordpress如何获取图形标签内的帖子缩略图

从youtube嵌入缩略图和视频(php - Wordpress)