Skip to content

Instantly share code, notes, and snippets.

@corsonr
Created June 14, 2014 10:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save corsonr/0f19caaacfaa2c6b934f to your computer and use it in GitHub Desktop.
Save corsonr/0f19caaacfaa2c6b934f to your computer and use it in GitHub Desktop.
WooCommerce : display category image on category archive
<?php
add_action( 'woocommerce_archive_description', 'woocommerce_category_image', 2 );
function woocommerce_category_image() {
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 );
if ( $image ) {
echo '<img src="' . $image . '" alt="" />';
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment