2017-04-18 91 views
0

我正在製作一個wordpress網站,我要上傳一些圖片和視頻。只是爲了測試,我寫了一些帖子並上傳了一張圖片。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不顯示縮略圖?我應該添加更多?

回答

0

您可能會將圖像放在帖子的內容區域。

如果主題支持精選圖片,則在帖子信息中心的右下角應該有一個名爲精選圖片的部分。從那裏選擇一些圖像並更新您的帖子。