Skip to content

Instantly share code, notes, and snippets.

@brunoalvarenga
Forked from claudiosanches/functions.php
Created October 7, 2016 13:30
Show Gist options
  • Save brunoalvarenga/40a9a0559d5d63942a78988978ebfc66 to your computer and use it in GitHub Desktop.
Save brunoalvarenga/40a9a0559d5d63942a78988978ebfc66 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' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment