Hi, I have a problem with this ...
I have
<ul class="cat"> <?php
wp_list_categories('title_li=&sort_column=name&show_count=0&show_last_updated=1&use_desc_for_title=1&exclude=5') ?> </ul>
And I want to strip the character count of items in my category list ... say for example to 10 chars.
Btw, I tried this (it's adapted from get_the_title character count limit)
<?php if ( strlen(wp_list_categories()) > 10 ) { echo substr(wp_list_categories(), 0, 10)."..."; } else { wp_list_categories(); } ?>