resim için de, wp 2.9 ile gelen ufak resim özelliğini kullanabilirsiniz: http://markjaquith.wordpress.com/200...mbnail-images/

ya da Özel Alanlardan resmi ekleyip(ufak resim adıyla), temada da

Alıntı
<img src=""<?php $values = get_post_custom_values("ufakresim"); echo $values[0]; ?>" alt="" />
kodunu kullanabilirsiniz.

limit_post eklentisini kullanmak istemezseniz, temadaki functions.php dosyasının içine,

Alıntı
<?php
function excerpt($num) {
$limit = $num+1;
$excerpt = explode(' ', get_the_excerpt(), $limit);
array_pop($excerpt);
$excerpt = implode(" ",$excerpt)."...";
echo $excerpt;
}

function content($num) {
$theContent = get_the_content();
$output = preg_replace('/<img[^>]+./','', $theContent);
$limit = $num+1;
$content = explode(' ', $output, $limit);
array_pop($content);
$content = implode(" ",$content)."...";
echo $content;
}
?>
kodunu yapıştırıp, tema dosyasında

Alıntı
<?php excerpt('27'); ?>
kodunu kullanabilirsiniz.