Replies: 0
Hello, I’m using this code
add_shortcode('taximage', 'taximage');
function taximage() {
global $post;
return apply_filters( 'taxonomy-images-list-the-terms', '', array('post_id' => $post->ID, 'taxonomy' => 'pa_big-points') );
}
Then I put [taximage]
in to the short description of a woocommerce product.
It displays the images I’ve associated via Taxonomy Images Plugin on the terms I’ve add to the product…
But, the images are also now linking to a taxonomy page, and I only wanted to display images. Not linking anywhere.
Can anyone help me display the Taxonomy images as I am now, without linking the images to anything?
Thanks!