Answer by Mauricio Disilvestro for Always show same size tags for Tag Cloud...
I think I have a simpler solution: Install the plugin Add Admin CSSGo to Settings and put this code: p#tagcloud-post_tag.the-tagcloud a { font-size: 1em!important; }I put 1em but feel free to put...
View ArticleAnswer by ucon89 for Always show same size tags for Tag Cloud in Wordpress Admin
use this at functions.php /* Tagcloud, change the font size */function custom_tag_cloud_widget($args) { $args['largest'] = 13; //largest tag $args['smallest'] = 13; //smallest tag $args['unit'] = 'px';...
View ArticleAnswer by s_ha_dum for Always show same size tags for Tag Cloud in Wordpress...
With wp_tag_cloud you can set the smallest and largest argument to the same value:$args = array('smallest' => 8, 'largest' => 8,);echo wp_tag_cloud($args);Unfortunately, that would require...
View ArticleAlways show same size tags for Tag Cloud in Wordpress Admin
I wanted to know if there was a way to modify the back-end of Wordpress to do 2 things:Make all tags' font the same size, so none are larger than the othersAlways show the most used tags when...
View Article