For better layout and design, no unpredictable spacing. It overrides your settings in Theme Options.
Excerpts limit by characters. Change 80 to needed limit. Theme functions.php or functions.php in plugin:
function wp_trim_all_excerpt($text) {
$excerpt_length = apply_filters('excerpt_length', 80);
$text = wp_trim_words( $text, $excerpt_length, $excerpt_more ); //since wp3.3
return apply_filters('wp_trim_excerpt', $text, $raw_excerpt); //since wp3.3
}
remove_filter('get_the_excerpt', 'wp_trim_excerpt');
add_filter('get_the_excerpt', 'wp_trim_all_excerpt');
For better layout and design, no unpredictable spacing. It overrides your settings in Theme Options.
Excerpts limit by characters. Change **80** to needed limit. Theme functions.php or functions.php in plugin:
function wp_trim_all_excerpt($text) {
$excerpt_length = apply_filters('excerpt_length', 80);
$text = wp_trim_words( $text, $excerpt_length, $excerpt_more ); //since wp3.3
return apply_filters('wp_trim_excerpt', $text, $raw_excerpt); //since wp3.3
}
remove_filter('get_the_excerpt', 'wp_trim_excerpt');
add_filter('get_the_excerpt', 'wp_trim_all_excerpt');
Vote to pay developers attention to this features or issue.