temanın functions.php dosyasına aşağıdaki kodları ekleyin
<?php
function the_title2($before = '', $after = '', $echo = true, $length = false) {
$title = get_the_title();
if ( $length && is_numeric($length) ) {
$title = substr( $title, 0, $length );
}
if ( strlen($title)> 0 ) {
$title = apply_filters('the_title2', $before . $title . $after, $before, $after);
if ( $echo )
echo $title;
else
return $title;
}
}
?>başık bölümündeki title kodunun yerine aşağıdaki kodu ekleyin
<?php the_title2('', '...', true, '30') ?>30 sayısı başlıktaki harf sayısını belirler