Skip to content

Instantly share code, notes, and snippets.

@cagartner
Forked from claudiosanches/functions.php
Created July 18, 2016 03:13
Show Gist options
  • Save cagartner/1bb3b0354a15de325939700ea2bfe1e4 to your computer and use it in GitHub Desktop.
Save cagartner/1bb3b0354a15de325939700ea2bfe1e4 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' );
@jerrytoet
Copy link

Hi! Thank you for your great custom tag shortcode. How can I show ALL product tags with this code?

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