Answer the question
In order to leave comments, you need to log in
How to resize tags in wordpress?
The default is 8pt , but I can't find where this parameter is set?
Answer the question
In order to leave comments, you need to log in
Try like this:
add_filter( 'widget_tag_cloud_args', 'change_tag_cloud_font_sizes');
function change_tag_cloud_font_sizes( array $args ) {
$args['smallest'] = '10';
$args['largest'] = '18';
return $args;
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question