Support Forums for LiveMesh Themes & Plugins › Forums › Enticing Theme Support › Tags font size › Reply To: Tags font size
November 9, 2012 at 11:57 am
#418

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