Skip to content

Instantly share code, notes, and snippets.

@claudiosanches
Created July 6, 2016 03:34
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save claudiosanches/67e57a796dd98f6f735e71439577dbcc to your computer and use it in GitHub Desktop.
Save claudiosanches/67e57a796dd98f6f735e71439577dbcc to your computer and use it in GitHub Desktop.
WooCommerce - Custom tag cloud shortcode
<?php
/**
* Custom WooCommerce tag cloud shortcode.
*
* Use the follow shortcode in your pages: [my_wc_tag_cloud]
*/
function my_custom_wc_tag_cloud_shortcode() {
return wp_tag_cloud( array( 'taxonomy' => 'product_tag', 'echo' => false ) );
}
add_shortcode( 'my_wc_tag_cloud', 'my_custom_wc_tag_cloud_shortcode' );
@WhiteRabit
Copy link

thank you

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment