我有以下代码片段,如果与给定的产品类别相匹配,则会在存档页上的产品中添加帖子缩略图,这将输出图像,但也会回显帖子id。如何抑制以不显示帖子id?
add_action( \'woocommerce_after_shop_loop_item_title\', function () {
if(is_product_category(\'t-shirts\')) {
$thumb = get_the_post_thumbnail( the_ID());
if(is_string($thumb) ) {
echo \'<div class="imagewrapper">\' . $thumb;
}
}
}, 9 );
add_action( \'woocommerce_after_shop_loop_item_title\', function () {
if(is_product_category(\'t-shirts\')) {
$thumb = get_the_post_thumbnail( the_ID());
if(is_string($thumb) ) {
echo \'</div>\';
}
}
}, 11 );