Is there a way to add icon for a tag or category?
I think it would be a nice feature to edit tags from admin panel and to be able to add an icon to categories and tags.
Update: Actually i found a way for tags but i just need to know how to do this:
In the following function if i can just add the tag name to the class i can add icons through css.
function post_tag_item($tag, $class)
{
$this->output('<LI CLASS="'.$class.'-tag-item">'.$tag.'</LI>');
}
Couldnt figure out categories though..