<?php
/**
 * Featured Image style thumbnail
 *
 * @package Total Wordpress Theme
 * @subpackage Templates/WooCommerce
 * @version 4.9.8
 */

// Exit if accessed directly
if ( ! defined( 'ABSPATH' ) ) {
    exit;
}

// Display featured image if defined
if ( has_post_thumbnail() ) {

    wpex_post_thumbnail( array(
        'attachment' => get_post_thumbnail_id(),
        'size'       => 'shop_catalog',
        'alt'        => wpex_get_esc_title(),
        'class'      => 'woo-entry-image-main wp-post-image',
    ) );

}

// Display placeholder if there isn't a thumbnail defined.
else {

    wpex_woo_placeholder_img();

}

?>