Skip to content

Instantly share code, notes, and snippets.

@aprakasa
Created December 2, 2012 09:10
Show Gist options
  • Save aprakasa/4187867 to your computer and use it in GitHub Desktop.
Save aprakasa/4187867 to your computer and use it in GitHub Desktop.
WooCommerce - Display Category Image
// verify that this is a product category page
if (is_product_category()){
global $wp_query;
// get the query object
$cat = $wp_query->get_queried_object();
// get the thumbnail id user the term_id
$thumbnail_id = get_woocommerce_term_meta( $cat->term_id, 'thumbnail_id', true );
// get the image URL
$image = wp_get_attachment_url( $thumbnail_id );
// print the IMG HTML
echo '<img src="'.$image.'" alt="" width="762" height="365" />';
}
@mrfoxtalbot
Copy link

Works nicely.

@adrianovarlotta
Copy link

Thanks so much, this code help me,
how can i put this on single-product.php?
this code isnt work in single product....

Thanks

@j-mccarthy
Copy link

Very cool, thank you

@sgelob
Copy link

sgelob commented Sep 2, 2015

@kashifkiduniya
Copy link

Perfect!

@grove86satyas
Copy link

Work Perfect. Thank You....

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment