jbalzar
3/19/2016 - 11:44 AM

Get Category Image in WooCommerce

Get Category Image in WooCommerce

<?php

$thumbnail_id = get_woocommerce_term_meta( $category->term_id, 'thumbnail_id', true );
$cat_image = wp_get_attachment_url( $thumbnail_id );

?>