//KARAKTER LIMITLEME
function yazikes($text, $limit = 25, $ending = '...') {
if (strlen($text) > $limit) {
$text = strip_tags($text);
$text = substr($text, 0, $limit);
$text = substr($text, 0, -(strlen(strrchr($text, ' '))));
$text = $text . $ending;
}
return $text;
}
Sayfaya eklenecek kod :
post_content,280); ?>
Buradaki 280 değerini değiştirmeniz mümkün.
Bunu kullanın deneyin derim.
İyi bloglar.