在要处理图标或选项卡的产品页面模板上调用此模板:
<?php
if ( ! defined( \'ABSPATH\' ) ) exit; // Exit if accessed directly
global $post, $woocommerce, $product;
if ($product-> is_virtual(\'yes\')) {
// your logic to display tab or image etc
}else{
// your logic not to display tab or image etc
}
?>
follow this link for details
有关更多相关详细信息
see this link 和
this one 希望这将给你的想法和帮助!
根据注释获取ID为的产品类型:For details
$product = get_product(619);
echo $product->product_type;