woocommerce categories image code example
Example 1: get product image woocommerce
$id = $loop->post->ID
$image = wp_get_attachment_image_src( get_post_thumbnail_id( $id ), 'single-post-thumbnail' );
<img src="<?php echo $image[0]; ?>" data-id="<?php echo $id; ?>" />
Example 2: woocommerce get category imgae
if ( is_product_category() ){
global $wp_query;
$cat = $wp_query->get_queried_object();
$thumbnail_id = get_woocommerce_term_meta( $cat->term_id, 'thumbnail_id', true );
$image = wp_get_attachment_url( $thumbnail_id );
echo "<img src='{$image}' alt='' width='762' height='365' />";
}