temanın functions.php dosyasına <?php sonra aşağıdaki kodu ekleyin


function the_title2($before = '', $after = '', $echo = true, $length = false) {
$title = get_the_title();

 if ( $length && is_numeric($length) ) {

 $title = mb_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;

          }

      }



temanın kısa başlık görünmesini istediğiniz yerlerde (ana sayfa index.php ya da home.php --- kategori sayfaları archive.php ya da category.php) aşağıdaki başlık kodunu kullanın 25 harf sayısıdır

<?php the_title2('', '...', true, '25') ?>