<?php if ( has_post_thumbnail()) : ?> <!-- check if the post has a Post Thumbnail assigned to it. --> <div class="listThumb"><?php the_post_thumbnail('thumbnail'); ?></div> <?php endif; ?>
<?php if ( has_post_thumbnail() ) { // check if the post has a Post Thumbnail assigned to it. the_post_thumbnail('thumbnail'); } ?>