• Resolved masoudnzr

    (@masoudnzr)


    hi

    i have this code

    <?php 
    
    $terms = get_the_terms( $post->ID, 'product_cat' );
    foreach ( $terms as $term ){
      $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.'" alt="'.$category_name.'" title="'.$category_name.'">';
    }
    
    ?>

    but i want show parent category img

Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘show parent category img’ is closed to new replies.