aşağıdaki kodu function.php dosyasına ekle
function icerik_kisalt($char) {
$content = get_the_content($post->ID);
$content = substr($content,0,$char);
echo $content;
}index.php, category.php, tag.php gibi dosyalarda
<?php the_content()?> yerine <?php icerik_kisalt(100);?> şeklinde kullan. 100 sayısını kendine göre değiştir. 500 yaparsan 500 karakter görünür.