<?php
//Show category images on single product page
$terms = get_the_terms( $post->ID, 'product_cat' );// get the post categories ids
foreach ( $terms as $term ) // traverse all post category deails
{
$category_name = $term->name;
$category_thumbnail = get_woocommerce_term_meta($term->term_id, 'thumbnail_id', true);
$image = wp_get_attachment_url($category_thumbnail);
echo '<img src="'.$image.'">';
}
?>
//Show category images on single product page
$terms = get_the_terms( $post->ID, 'product_cat' );// get the post categories ids
foreach ( $terms as $term ) // traverse all post category deails
{
$category_name = $term->name;
$category_thumbnail = get_woocommerce_term_meta($term->term_id, 'thumbnail_id', true);
$image = wp_get_attachment_url($category_thumbnail);
echo '<img src="'.$image.'">';
}
?>
No comments :
Post a Comment