本文介绍了在 Woocommerce 中显示带有链接的产品标签列表的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想做与此代码相同的事情,但对于 woocommerce 中的产品标签:
<?<div class="tags"><?
我还没有找到方法.
感谢任何帮助.
解决方案
Woocommerce 产品标签是一种自定义分类法.
因此您将使用 WordPress get_terms()
和 get_term_link()
函数来代替:
'product_tag', 'hide_empty' => false));?><div class="product-tags"><?
代码已经过测试并且可以正常工作.
注意:对于产品类别,分类是'product_cat'
而不是'product_tag'
...
I would like to do the same thing as this code does, but for product tags in woocommerce:
<?
I haven't found yet the way to do it.
Any help is appreciated.
解决方案
Woocommerce Product Tags are a custom taxonomy.
So you will use instead WordPress get_terms()
and get_term_link()
functions this way:
<?
Code is tested and works.
这篇关于在 Woocommerce 中显示带有链接的产品标签列表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!