如果没有精选图片,请隐藏帖子缩略图

时间:2015-11-25 21:45:46

标签: php wordpress

我使用此代码在相关帖子中设置图像。 如果帖子中没有精选图片,我会隐藏缩略图。

我的代码是:

<div class="item">
                  <figure class="entry-image">
                      <a href="<?php the_permalink(); ?>">
                        <?php 
                        if ( has_post_thumbnail() ) {
                        the_post_thumbnail( 'rectangle-size-small' );

                        } elseif( first_post_image() ) { // Set the first    image from the editor
                            echo '<img src="' . first_post_image() . '"     class="wp-post-image" />';
                        } ?>
                      </a>
                  </figure>
                  <header class="entry-header">
                      <h4>
                          <a href="<?php the_permalink() ?>"><?php the_title(); ?></a>
                      </h4>
                  </header>
            </div>

我如何替换 the_post_thumbnail('rectangle-size-small'); 隐藏缩略图?

谢谢

1 个答案:

答案 0 :(得分:0)

has_post_thumbnail()函数检查是否有特色图像,因此如果没有提供特色图像,则不会显示。