denemedim ama php mantığı olarak şöyle birşey mümkün olabilir

<?php the_content(); ?>

yerine

<?php $metin = the_content(); 
$ozet = substr($metin, 0, 50);
$yazi = $ozet.'<br><a href="'.the_permalink().'">Devami</a>';
echo $yazi;
?>