如果没有缩略图,请忽略缩略图空间

因此,我有以下代码可以循环浏览我的帖子并以列表格式显示帖子。以下是我正在使用的代码:

<?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; ?>

以下是带有缩略图的图像:

http://img4.mukewang.com/6330496f000156f206460178.jpg

这是当没有帖子缩略图可用时,它只会留下一个空白区域:

http://img3.mukewang.com/6330497c00012ea106500160.jpg

翻阅古今
浏览 57回答 1
1回答

jeck猫

如果选中缩略图(如果已显示),则显示占位符图像。希望这对你有帮助。<?php// Must be inside a loop.if ( has_post_thumbnail() ) {&nbsp; &nbsp; the_post_thumbnail();}else {&nbsp; &nbsp; echo '<img src="' . get_bloginfo( 'stylesheet_directory' )&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; . '/images/placeholder.jpg" />';}?>
打开App,查看更多内容
随时随地看视频慕课网APP