Codex tools: Log in / create account
Contents |
This filter is used by wp_trim_excerpt() function. By default the excerpt length is set to return 55 words.
To change excerpt length, add the following code to functions.php file in your theme:
function new_excerpt_length($length) {
return 20;
}
add_filter('excerpt_length', 'new_excerpt_length');
wp_trim_excerpt() is located in wp-includes/formatting.php.