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 others
- Always show the most used tags when creating/editing a post
This only applies to the back-end of WordPress, not calling the tag cloud or any sort of front-end CSS that would be found in the theme.
use this at functions.php
I think I have a simpler solution:
Install the plugin Add Admin CSS
Go to Settings and put this code:
I put
1em
but feel free to put whatever value you prefer.With
wp_tag_cloud
you can set thesmallest
andlargest
argument to the same value:Unfortunately, that would require hacking the Core. Also, unfortunately, I don’t see a filter that will allow you to alter those argument directly, so you are going to have to do this a bit brute-force-y.
Hooking to
load-edit-tags.php
should cause this to operate only on thewp-admin/edit-tags.php
page on the backend, which is what I assume you want.Reference: http://codex.wordpress.org/Function_Reference/wp_tag_cloud