原因是它没有出现
<?php if ( has_post_thumbnail() ) : ?>
<a href="<?php the_permalink(); ?>">
<?php the_post_thumbnail(); ?>
</a>
<?php endif; ?>
您只显示一个带有复选框的链接,该复选框显示的是特征图像是否存在
看起来,你的帖子没有特色图片,请选择任何特色图片,或者从中删除该复选框,因为我看不出有任何需要。
因此,您的代码将是:
<?php get_header(); ?>
<div id="main">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
<a href="<?php the_permalink(); ?>">
<?php the_post_thumbnail(); ?>
</a>
</div>
<?php endwhile; ?>
<?php include (TEMPLATEPATH . \'/inc/nav.php\' ); ?>
<?php else : ?>
<h2>Not Found</h2>
<?php endif; ?>
</div><!--Main End-->
<?php get_footer(); ?>