在 WooCommerce 中的产品库下显示标题

Show caption under product gallery in WooCommerce

我正在尝试在产品页面图库中的缩略图下显示标题文本。我需要显示文本,因为图库中有很多图像,每个拇指都是引擎的一部分,名称对用户有帮助。

WooCommerce 产品页面中的图库代码为:

echo apply_filters( 'woocommerce_single_product_image_thumbnail_html', sprintf( '<li data-thumb="%s">%s%s<a href="%s" class="%s lightbox" data-rel="ilightbox[product]" data-caption="%s" title="%s" alt="%s"><i class="fa-search-plus"></i></a></li>', $thumb_image, $image_html, $caption_html, $image_link, $image_class, $image_caption, $image_title, $image_alt ), $attachment_id, $post->ID, $image_class );`

我该如何编辑它?或者,有什么解决办法吗? 谢谢

确保您了解 sprint 函数的工作方式。 你可以玩方块的 css 位置。这可能是解决方案。

sprintf( '<li data-thumb="%s">%s<span style="postition:...">%s</span><a href="%s" class="%s lightbox" data-rel="ilightbox[product]" data-caption="%s" title="%s" alt="%s"><i class="fa-search-plus"></i></a></li>', $thumb_image, $image_html, $caption_html, $image_link, $image_class, $image_caption, $image_title, $image_alt )