Last active
July 8, 2020 12:22
-
-
Save david-strejc/2e27f73b18b748de21132b4519044a5e to your computer and use it in GitHub Desktop.
This file contains hidden or 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
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