Good afternoon. Installed woocommerce, added products. I want to get a thumbnail of the product, the id of which I know for certain. For example - 28. I tried to execute the code below, but nothing comes out. Tell me which way to look?
$thumb_id = get_post_thumbnail_id(28); $thumb_url = wp_get_attachment_image_src($thumb_id,'thumbnail-size', true); echo $thumb_url[0];