Forked from aprakasa/WooCommerce - Display Category Image
Created
May 23, 2014 15:58
-
-
Save jprieton/97496c9c2c05c8a46a29 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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" />'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment