Skip to content

Instantly share code, notes, and snippets.

@david-strejc
Last active July 8, 2020 12:22
Show Gist options
  • Save david-strejc/2e27f73b18b748de21132b4519044a5e to your computer and use it in GitHub Desktop.
Save david-strejc/2e27f73b18b748de21132b4519044a5e to your computer and use it in GitHub Desktop.
add_action( 'woocommerce_single_product_summary', 'wpd_woo_taxonomy_images', 20 );
function wpd_woo_taxonomy_images() {
echo apply_filters( 'taxonomy-images-list-the-terms', '', array(
'before' => '<div class="my-custom-class-name">',
'after' => '</div>',
'before_image' => '<span>',
'after_image' => '</span>',
'taxonomy' => 'product_cat',
) );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment