File: /var/www/viitorx.stgviitor.com/wp-content/themes/viitorx/template-parts/blog-card.php
<?php
/**
* @package ViitorX
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
?>
<a class="blog-card" href="<?php the_permalink(); ?>" aria-label="<?php echo esc_attr( sprintf( __( 'Read: %s', 'viitorx' ), get_the_title() ) ); ?>">
<?php if ( has_post_thumbnail() ) : ?>
<div class="blog-card__img-wrap">
<?php the_post_thumbnail( 'large', array( 'class' => 'blog-card__img', 'loading' => 'lazy', 'decoding' => 'async' ) ); ?>
</div>
<?php endif; ?>
<h3 class="blog-card__title"><?php the_title(); ?></h3>
</a>