????

Your IP : 216.73.216.152


Current Path : /home2/morganrand/www/wp-content/themes/wanderfuls-2/woocommerce/loop/thumbnail/
Upload File :
Current File : /home2/morganrand/www/wp-content/themes/wanderfuls-2/woocommerce/loop/thumbnail/featured-image.php

<?php
/**
 * Image Swap style thumbnail
 *
 * @package Wanderfuls Wordpress Theme
 * @subpackage Templates/WooCommerce
 */

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

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

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

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

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

}

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