Reply To: Tags font size

#418
livemesh
Keymaster

The best way to achieve this is to place the following code in custom-functions.php in the theme directory –

add_filter( ‘widget_tag_cloud_args’, my_tag_cloud_args );
function my_tag_cloud_args($in){
return ‘smallest=11&largest=14&number=25&orderby=name&unit=px’;
}

This way none of the wordpress install files are affected. Thanks