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

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

// Return placeholder if there isn't a thumbnail defined.
if ( ! has_post_thumbnail() ) {
    wpex_woo_placeholder_img();
    return;
}

// Get featured image
$attachment = get_post_thumbnail_id();

// Display featured image if defined
if ( $attachment ) {

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

}

// Display placeholder
else {
    echo '<img src="'. wc_placeholder_img_src() .'" alt="'. esc_html__( 'Placeholder Image', 'total' ) .'" class="woo-entry-image-main" />';
} ?>