Thumbnaill显示示例图像如果没有设置 - wordpress

时间:2015-07-01 13:33:37

标签: wordpress thumbnails

我想在wordpress缩略图代码中合并两个函数;如果未在帖子中插入缩略图,我想显示示例图像。

这是设置缩略图的部分:

 $output .=  '<div class="post-image"><a href="'. get_permalink($post_id) .'">
                        '. get_the_post_thumbnail( $post_id, 'latest-post' )  .' 
                    </a></div>';        

                }

如果未设置缩略图,我想显示图像,如下所示:

} else { ?>
            <a href="<?php echo esc_url(get_permalink()); ?>">
            <img src="<?php echo get_template_directory_uri() ?>/img/media/media1-medium.jpg" alt="">
            </a>

那么,我如何合并这两个函数?

谢谢

1 个答案:

答案 0 :(得分:0)

这就是你要找的东西吗?

if( has_post_thumbnail( $post_id ) ) {
  // Runs if post has thumbnail
} else {
  // Runs if post has NOT thumbnail
}