Increasing excerpt length
-
I wanted to increase the excerpt length and I ran up against the WordPress wall.
In order to do it, edit the functions.php and find all the places where “55” is and set it to the new max length (I picked 100) and then add:
add_filter(‘excerpt_length’, ‘my_excerpt_length’);
function my_excerpt_length($length) {
return 100; // Or whatever you want the length to be.
}Which I found from this page;
Better would be to create a variable, say, $max_excerpt_length and insert that into the relevant places in functions.php.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
The topic ‘Increasing excerpt length’ is closed to new replies.