Facet Listing Code
Thu Nov 23 2023 10:04:38 GMT+0000 (Coordinated Universal Time)
Saved by
@omnixima
#jquery
<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>
content_copyCOPY
Comments