Hi d4jaj1,
In order to set the length of any excerpts on your pages, you need to add some lines into the file “functions.php” located into your plugin folder:
function new_excerpt_length($length) {
return 55;
}
add_filter(‘excerpt_length’, ‘new_excerpt_length’);
Bye bye and happy blogging