图像未显示在类别视图中(WordPress)

时间:2011-12-30 09:59:51

标签: php html image wordpress

几个月后,我现在有了一个基于wordpress的iOSlog评论博客。 (几乎)所有文章都以应用程序的图像开头。这些图像在主页面上可见,但在类别视图中,这些图像是隐藏的还是不存在。我需要这个类别页面在iOS和Mac OS应用程序之间进行更改,如果图像也会显示在那里会很好。

主页:http://iapptipps.de/ 分类页面:http://iapptipps.de/category/ios/

我该如何更改?它是由WordPress或主题引起的吗?谢谢你的回答!

categories.php的代码:

<?php /* Start the Loop */ ?>
            <?php while ( have_posts() ) : the_post(); ?>           
                <?php get_template_part( 'content', get_post_format() ); ?>
            <?php endwhile; ?>

这里是content.php(图片显示的地方):

<div class="entry-content">
            <?php if ( has_post_thumbnail() ): ?>
            <a href="<?php the_permalink(); ?>"><?php the_post_thumbnail('thumbnail'); ?></a>
            <?php endif; ?>
            <?php the_content( __( 'Continue Reading &rarr;', 'bugis' ) ); ?>
            <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'bugis' ), 'after' => '</div>' ) ); ?>
        </div>

1 个答案:

答案 0 :(得分:0)

这是由主题引起的。如果您查看主题文件夹并查找(我相信)archives.php。你想在你希望图像出现的地方添加这样的东西:

<?php 
if ( has_post_thumbnail() ) { // check if the post has a Post Thumbnail assigned to it.
  the_post_thumbnail();
} 
?>

您可以查看index.php文件,看看它是如何设置的,您可以复制并粘贴代码。