File: /home/dfwparty/bizcoach.biz/wp-content/themes/mh-magazine/content-carousel.php
<?php /* Template for displaying content of MH Carousel widget */ ?>
<li <?php post_class('mh-carousel-item'); ?>>
<figure class="mh-carousel-thumb">
<a class="mh-thumb-icon" href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php
if (has_post_thumbnail()) {
the_post_thumbnail('mh-magazine-medium');
} else {
echo '<img class="mh-image-placeholder" src="' . get_template_directory_uri() . '/includes/core/assets/images/placeholder-medium.png' . '" alt="' . esc_html__('No Picture', 'mh-magazine') . '" />';
} ?>
</a>
</figure>
<div class="mh-carousel-caption">
<?php $category = get_the_category(); echo esc_attr($category[0]->cat_name); ?>
</div>
<h3 class="mh-carousel-title">
<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>">
<?php the_title(); ?>
</a>
</h3>
</li>