因此,我有以下代码可以循环浏览我的帖子并以列表格式显示帖子。以下是我正在使用的代码:
<?php while (have_posts()) : the_post(); ?> <div class="one-sixth first"><?php the_post_thumbnail(); ?></div> <div class="five-sixths"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></div> <?php endwhile; ?>
以下是带有缩略图的图像:
这是当没有帖子缩略图可用时,它只会留下一个空白区域:
jeck猫