我需要为Woocommerce中的每个产品页面制作一些不同的东西,所以我想使用类似的东西:
is_product('My Product Name')
但没有运气。我怎么能这样做?
答案 0 :(得分:3)
is_product - 查看单个产品时返回true。这不是你需要的。
您需要检查产品标题是否为x。
Somethig喜欢: $ product_title = get_the_title(); if($ product_title ==“your title”)//做某事
答案 1 :(得分:0)
产品标题可能会更改。
改为检查不可变的引用,例如产品ID:
is_single(31950)
确认您也在检查产品页面:
is_single(31950) && is_product()