我正在使用一个令人难以置信的基本循环在wordpress 3.9.1中创建我的第一个模板,但特色图像(缩略图)没有出现在主页上。这是一个博客模板,所以主页显示前5个帖子。我正在使用本地主机,因为它仍在慢慢构建。
我在functions.php文件中包含了精选图片支持:
// Enable Featured Images
add_theme_support( 'post-thumbnails', array( 'post', 'page' ) );
single.php的基本循环工作正常:
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div class="post">
<div class="content_padding">
<?php the_post_thumbnail(); ?>
<h2> <?php the_title(); ?></h2>
<?php the_content(); ?>
</div>
</div>
<?php endwhile; else: ?>
<p>No Posts to Display</p>
page.php循环与single.php循环相同,但即使内容加载,我加载博客页面时也不会显示图像。除了默认的(Akismet和Hello Dolly)之外,我现在没有任何插件,它们都没有被激活过。谁知道我做错了什么?