Wordpress显示缩略图不起作用

时间:2017-04-18 18:19:44

标签: wordpress themes thumbnails

我正在制作一个wordpress网站,我将上传一些图片和视频。只是为了测试,我写了一些帖子并上传了一张图片。

我正在使用https://tzm.wordpress.org/themes/rowling/主题

在首页,应该有一些最近的帖子有缩略图。

但是,在我的wordpress中,缩略图在最近的帖子工作时不起作用。

我检查了一些php文件,比如functions.php或content.php,看看它们是否有一些缩略图功能。

在content.php,我找到了一些缩略图代码

<div id="post-<?php the_ID(); ?>" <?php post_class('post'); ?>>

<?php if ( has_post_thumbnail() ) : ?>

    <div class="post-image">

        <?php if ( is_sticky() ) : ?>
            <a class="sticky-tag" title="<?php _e('Sticky post:','rowling'); echo ' '; the_title_attribute(); ?>" href="<?php the_permalink(); ?>">
                <span class="fa fw fa-star"></span>
            </a>
        <?php endif; ?>

        <a title="<?php the_title_attribute(); ?>" href="<?php the_permalink(); ?>">    

            <?php the_post_thumbnail('post-image-thumb'); ?>

        </a>

    </div> <!-- /post-image -->

但为什么我的wordpress没有显示缩略图?我应该添加更多东西吗?

1 个答案:

答案 0 :(得分:0)

您可能会将图片放入帖子的内容区域。

如果主题支持精选图片,则应在帖子信息中心的右下方显示一个名为精选图片的部分。从那里选择一些图像并更新你的帖子。