fullstackdev adlı üyeden alıntı

gorsel olarak esitlemek istiyorsaniz css ile .entry-content e bir height verip overflow:hidden; verirseniz yuksekligi sabitlenip taşan içerik kaybolacaktir. harf bazli esitlemek istiyorsaniz

substr(the_content(),0, 30) . "..."; // 30 harf gosterir ve sonuna ... ekler
?>

gibi sinirlamaniz gerekebilir


substr the content yazınca resimler belirdi.sadece özet istiyorum. the_excerpt i sınırlayamadım.kullandığım tema da şöyle bir bölüm var bilmiyorum nasıl kullanılıyor?

// Create the Custom Excerpts callback
function html5wp_excerpt($length_callback = '', $more_callback = '')
{
global $post;
if (function_exists($length_callback)) {
add_filter('excerpt_length', $length_callback);
}
if (function_exists($more_callback)) {
add_filter('excerpt_more', $more_callback);
}
$output = get_the_excerpt();
$output = apply_filters('wptexturize', $output);
$output = apply_filters('convert_chars', $output);
$output = '

' . $output . '

';
echo $output;
}