Custom Post title length
function cptl_title($char) {
$title = get_the_title($post->ID);
$title = substr($title,0,$char);
echo $title;
}
function cptl_title($char) {
$title = get_the_title($post->ID);
$title = substr($title,0,$char);
echo $title;
}