我在面板(post.php页面)中自定义了如下选项卡:
但如果它不是虚拟产品,我想把它隐藏起来。如果是虚拟产品,请展示它。我不知道如何才能获得产品的价值,这是虚拟的还是非虚拟的。
在要处理图标或选项卡的产品页面模板上调用此模板:
<?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
}
?>
有关更多相关详细信息see this link 和this one 希望这将给你的想法和帮助!
根据注释获取ID为的产品类型:For details
$product = get_product(619);
echo $product->product_type;