Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Custom Post title length

    function cptl_title($char) {

          $title = get_the_title($post->ID);

          $title = substr($title,0,$char);

     echo $title;

}