如何查看WooCommerce单品标签

时间:2019-07-23 作者:Kt H

我想在单个产品页面查看产品标签。

例如,当用户访问单个产品页面时

如果产品标签为“成人”

重定向到主页面。

我发现is_product_tag() 但此功能仅适用于存档页面。

有没有办法知道单个产品页面上的标签?

1 个回复
SO网友:nmr

要检查产品是否有标签,可以使用has_term()is_object_in_term().

has_term( \'tag_slug_or_ID\', \'product_tag\' )
或:

// checking if the product has any tag
is_object_in_term( $product_id, \'product_tag\' )
// checking if the product has a given tag
is_object_in_term( $product_id, \'product_tag\', \'tag_slug_or_ID\' )

相关推荐