Display most popular Product Tags in the widget and limit the number of tags to be display.
i found a code it work but not well integrate with the theme
10,
‘largest’ => 22,
‘unit’ => ‘px’,
‘number’ => 10,
‘format’ => ‘flat’,
‘separator’ => ” “,
‘orderby’ => ‘count’,
‘order’ => ‘DESC’,
‘show_count’ => 3,
‘echo’ => false
);
$tag_string = wp_generate_tag_cloud( $tags, $args );
return $tag_string;
}
// Add a shortcode so that we can use it in widgets, posts, and pages
add_shortcode(‘wpb_popular_tags’, ‘wpb_tag_cloud’);
// Enable shortcode execution in text widget
add_filter (‘widget_text’, ‘do_shortcode’);
can you guys help me with that