Current File : /home/kelaby89/sergio-cuchi.tattoo/wp-content/themes/maori/templates/carousel/xsartist-template.php |
<?php $maori_img_animation = get_theme_mod( 'maori_img_animation' ); ?>
<?php $maori_subtitle = get_post_meta( get_the_id(), 'maori_cmb2_subtitle', true ); ?>
<div <?php post_class(); ?>>
<div class="card-masonry card-small">
<div class="card">
<?php if (has_post_thumbnail()) { ?>
<?php
$maori_thumb_id = get_post_thumbnail_id();
$maori_thumb_url_array = wp_get_attachment_image_src($maori_thumb_id, 'large', true);
$maori_thumb_url = $maori_thumb_url_array[0];
?>
<a <?php if (empty($maori_img_animation)) { ?>class="maori-animated-img"<?php } ?> href="<?php echo esc_url(get_the_permalink()); ?>">
<img src="<?php echo esc_url($maori_thumb_url); ?>" alt="<?php the_title_attribute(); ?>" />
</a>
<?php } ?>
<div class="card-body">
<?php if( $maori_subtitle ) { ?>
<div class="card-category">
<span><?php echo esc_html($maori_subtitle); ?></span>
</div>
<?php } ?>
<h5 class="card-title no-shadow"><a href="<?php echo esc_url(get_the_permalink()); ?>"><?php the_title(); ?></a></h5>
</div>
</div>
</div>
</div>