我正在尝试使用WooCommerce条件标记,仅将模板包含到特定的产品页面中。https://docs.woocommerce.com/document/conditional-tags/
然而,我的陈述不起作用,它们显示在所有页面上。我不想在特定类别及其产品页面中显示我的模板:
<?php
// Show in Shop Page OR NOT in Products IDs 15852,15859,15863,15866 OR NOT Category Archive Gift Cards
if ( is_shop() || !is_product(array( 15852,15859,15863,15866 )) || !is_product_category( \'gift-cards\' ))
{
get_template_part(\'my-template\');
}
?>
我也尝试了相反的方法:
<?php
if ( is_product(array(\'gift-card-25\',\'gift-card-50\',\'gift-card-75\',\'gift-card-100\')) )
{
get_template_part(\'my-template\');
}
?>
你能告诉我如何使它工作吗?
我们的网站:https://grindersforlife.com/shop
谢谢