Some of my posts' titles have leading words, followed by a colon. I am removing the leading words and the column of every post title in the loop with the following:
<?php
$title = get_the_title();
$title_array = explode(':', $title);
$first_word = $title_array[1];
echo $first_word;
?>
How can I also limit the total length of the remaining title by character count?
