Skip to content

Instantly share code, notes, and snippets.

@imvarunkmr
Last active August 29, 2015 14:21
Show Gist options
  • Save imvarunkmr/7cb93493ae9ada55433f to your computer and use it in GitHub Desktop.
Save imvarunkmr/7cb93493ae9ada55433f to your computer and use it in GitHub Desktop.
Woocommerce: Get product category images
$thumbnail_id = get_woocommerce_term_meta( $product_cat->term_id, 'thumbnail_id', true );
// get the image thumbnail for any size
$image = wp_get_attachment_image_src( $thumbnail_id, 'small' );
echo '<img src = "' . $image[0] . '" />';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment