如何在单个产品页面上显示woocommerce产品标签。

时间:2016-03-18 10:23:16

标签: wordpress tags woocommerce

如果有一种方法可以通过woocommerce(wordpress插件)在单个产品页面上显示产品的标签,那么我看起来就像一个疯狂的人。我找不到关于ti的任何内容,而且我一直试图调整代码,但没有成功。 。

如果有人有一些高级精简版,那就太棒了,

非常感谢

2 个答案:

答案 0 :(得分:1)

好的,所以根据您使用的WordPress主题,它们可能会自动显示(只需选中并立即使用“官方”Storefront theme)。

如果您正在编写插件(或主题),那么您最有可能想要PHP解决方案。在这种情况下,根据this,您应该乐于使用以下内容:

global $product; // gets the Product object (correspoding to the single page)
$product->get_tags( $product ); // returns an array with product tags

答案 1 :(得分:0)

根据this post,您必须使用get_terms('product_tag')