yardımcı olduğun için teşekkür ederim ayrıca;
wp-includes/formatting.php ile kodunda aylarlamalar yapabiliyoruz. 55 kelime uzunluğu sitenize göre ayarlama yapabiliyoruz. Bir de […] [.....] yeri düzenliyebiliyoruz. İyi forumlar.
/**
/**
* Filters the number of words in an excerpt.
*
* @since 2.7.0
*
* @param int $number The number of words. Default 55.
*/
$excerpt_length = apply_filters( 'excerpt_length', 55 );
/**
* Filters the string in the "more" link displayed after a trimmed excerpt.
*
* @since 2.9.0
*
* @param string $more_string The string shown within the more link.
*/
$excerpt_more = apply_filters( 'excerpt_more', ' ' . '[…]' );
$text = wp_trim_words( $text, $excerpt_length, $excerpt_more );
}