V
V
Vladimir Kulikov2019-07-09 19:22:07
WordPress
Vladimir Kulikov, 2019-07-09 19:22:07

How to display image in woocomerce?

I have products displayed through the category.php file. List. How to display a picture of the category to which it belongs near the name of each product?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
AlexeewAlex, 2019-07-09
@AlexeewAlex

in cycle

$category = get_the_category(get_the_ID());
$cat_id = get_cat_ID($category[0]->cat_name);
$thumbnail = get_term_meta($cat_id, 'thumbnail_id', true);
$image = wp_get_attachment_url($thumbnail);

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question