Skip to content

Instantly share code, notes, and snippets.

@ahmedeshaan
Created May 9, 2018 03:27
Show Gist options
  • Save ahmedeshaan/5442173d4fcc047e269a9c7a695b864f to your computer and use it in GitHub Desktop.
Save ahmedeshaan/5442173d4fcc047e269a9c7a695b864f to your computer and use it in GitHub Desktop.
<?php
function custom_woocommerce_tag_cloud_widget() {
$args = array(
'number' => 15,
'taxonomy' => 'product_tag'
);
return $args;
}
add_filter( 'woocommerce_product_tag_cloud_widget_args', 'custom_woocommerce_tag_cloud_widget' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment