Здравствуйте. Возникла необходимость вывести миниатюру товара именно как адрес к файлу. Сейчас вывод происходит так
if ( has_post_thumbnail() ) {
$html = wc_get_gallery_image_html( $post_thumbnail_id, true );
}
и на выходе получается такое
<div data-thumb="http://franch.local/wp-content/uploads/2018/03/maxresdefault-100x100.jpg" class="woocommerce-product-gallery__image"><a href="http://franch.local/wp-content/uploads/2018/03/maxresdefault.jpg"><img src="http://franch.local/wp-content/uploads/2018/03/maxresdefault-600x338.jpg" class="wp-post-image" alt="" title="maxresdefault" data-caption="" data-src="http://franch.local/wp-content/uploads/2018/03/maxresdefault.jpg" data-large_image="http://franch.local/wp-content/uploads/2018/03/maxresdefault.jpg" data-large_image_width="" data-large_image_height=""></a></div>
Если ли возможность вывода именно адреса изображении? Например так
http://franch.local/wp-content/uploads/2018/03/maxresdefault-600x338.jpg
Заранее благодарю за ответ.