Wordpress缩略图仅显示在类别页面中

时间:2013-12-21 15:12:02

标签: php wordpress image thumbnails

出于某种原因,我无法通过“特色图片”选项添加缩略图。如果您查看this site,您会发现前三个帖子中没有图片。我的主题确实支持缩略图,我在这三个帖子上添加了一个精选图片,但它没有显示出来。但是,如果您点击“电影”,您会看到图像突然出现。

编辑:我相信导致问题的是这段代码,'if condition'

     <?php if ( is_archive() || is_search() ) : // Only display Excerpts for archives & search ?>
<div class="entry-summary">
    <?php if ( has_post_thumbnail() && !post_password_required() ) { ?>
        <a href="<?php the_permalink() ?>" rel="bookmark" class="thumb"><?php the_post_thumbnail( 'portfolio-thumbnail-fullwidth' ); ?></a>

    <?php } ?>
    <?php the_excerpt( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'portfoliopress' ) ); ?>
  </div><!-- .entry-summary -->
   <?php else : ?>
    <div class="entry-content">
    <?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'portfoliopress' ) ); ?>
    <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'portfoliopress' ), 'after' => '</div>' ) ); ?>
   </div><!-- .entry-content -->
    <?php endif; ?>

EDIT2:刚刚确认确实是导致差异的if条件。但我不知道如何删除它,如果它会影响内容(除了图像?)

编辑3:很抱歉,我自己修好了。如果我没有发布它,我可能不会解决它。

1 个答案:

答案 0 :(得分:0)

我不知道为什么主题创作者会这样做。但无论如何,其他任何人使用Portfolio Press并希望在他们的帖子中有缩略图,删除if条件并删除其中一个入口div。