anladığım kadarı ile kategorilerin yazıları sadece başlıklardan oluşuyor başlıkların titlesinde yazının özeti görünecek

öyle ise temanın functions.php dosyasına aşağıdaki kodu ekleyin

function post_limit($max_char, $more_link_text = '', $stripteaser = 0, $more_file = '') {
$content = get_the_content($more_link_text, $stripteaser, $more_file);
$content = apply_filters('the_content', $content);
$content = str_replace(']]>', ']]>', $content);
$content = strip_tags($content);

if (strlen($_GET['p']) > 0) {
echo "";
echo $content;
echo "...";
}
else if ((strlen($content)>$max_char) && ($espacio = strpos($content, " ", $max_char ))) {
$content = substr($content, 0, $espacio);
$content = $content;
echo "";
echo $content;
echo "...";
}
else {
echo "";
echo $content;
}
}

başlıklar için aşağıdaki kodu kullanın

<a href="<?php the_permalink() ?>" rel="bookmark" title="<?php post_limit('100'); ?>"><?php the_title(); ?></a>

100  harf sayısını belirler