Alıntı
<?php the_content(); ?>
yerine

Alıntı
<?php
$content = get_the_content('',FALSE,'');
$content = apply_filters('the_content', $content);
$content = str_replace(']]>', ']]>', $content);
echo substr($content,0,500);
?>
bunu yazın. 500 değerini isteğinize göre değiştirin.