I have a certain amount of characters that I can fit in the spot I want to display the category. So I was wondering if there was a way I could limit the ammount of characters that this function can output.
I want to limit this functions output:
<?php the_category(', ') ?>
outputs: WordPress, Computers, Blogging
Something like this:
<?php char_limit(the_category(', '), 14, '...') ?>
outputs: WordPress, Com...
I'm new to php and wordpress, so a litle guidance on how to execute would help.