Easily Change the Length of the Default WordPress Excerpt
Development
The default WordPress excerpt is 55 words long. By adding this quick bit to your functions.php file you can change the length to better suit your theme:
function new_excerpt_length($length) {
return 42;
}
add_filter('excerpt_length', 'new_excerpt_length');
Source: WordPress Codex
Create your free account to post your comment
Login to post your comment