The following snippet controls the maximum title length. Add the following snippet in functions.php. Then use the function customTitle() in the template to output the title in place of the WordPress the_title() method.

	
function customTitle($limit) {
    $title = get_the_title($post->ID);
    if(strlen($title) > $limit) {
      $title = substr($title, 0, $limit) . '...';
    }
    echo $title;
}
Tagged: