php - How to create a page with a cloud of product tags -
i'm building bookshop woocommerce , i'm using product tags authors. idea create page tag cloud (thus, authors), looked on wc documentation , found this:
woocommerce product tags – display product tags in tag cloud format
thing is: have no idea of how use it, looked on template-tags.php
, found this:
<div class="tag_cloud"> <?php wp_tag_cloud(); ?> </div>
am supposed change else in order display cloud of products tags?
thanks in advance!
try this:
wp_tag_cloud(array('taxonomy' => 'product_tag'));
Comments
Post a Comment