TekimNet adlı üyeden alıntı: mesajı görüntüle
Verdiginiz kod ile the_content iligisi yok!
the_content_limit calisabilmesi icin functions.php dosyasina asagidaki kodu eklemelisiniz
function the_content_limit($max_char, $more_link_text = '(more...)', $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 "<p>"; 
echo $content; 
echo "&nbsp;<a href='"; 
the_permalink(); 
echo "'>"."Devami &rarr;</a>"; 
echo "</p>"; 
} 
else if ((strlen($content)>$max_char) && ($espacio = strpos($content, " ", $max_char ))) { 
$content = substr($content, 0, $espacio); 
$content = $content; 
echo ""; 
echo $content; 
echo "..."; 
echo "&nbsp;<a href='"; 
the_permalink(); 
echo "'>".$more_link_text."</a>"; 
echo ""; 
} 
else { 
echo "<p>"; 
echo $content; 
echo "&nbsp;<a href='"; 
the_permalink(); 
echo "'>"."Devami &rarr;</a>"; 
echo "</p>"; 
} 
}

Ise yaradi fakat, devami filan yazilarini kaldirdigimda haya veriyor. limit post eklentisinde zaten devami diye birsey yazabiliyorum bunu burdan kaldirsakda oyle eklesek?