<div class="facet-listing center-three-columns"> <?php while ( have_posts() ): the_post(); ?> <a class="facet-card flex_column" href="<?php the_permalink(); ?>"> <div class="thumbnail-block"> <?php $featured_img_url = get_the_post_thumbnail_url( get_the_ID(),'full'); ?> <img class="card-thumbnail" src="<?php echo $featured_img_url; ?>"> </div> <div class="content-block"> <h3 class="card-title"><?php the_title(); ?></h3> <span class="false-link">Learn More <span class="avia-font-entypo-fontello arrow-icon">๎กน</span></span> </div> </a> <?php endwhile; ?> </div>