Created
May 9, 2018 03:27
-
-
Save ahmedeshaan/5442173d4fcc047e269a9c7a695b864f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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