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

All the good WordPress stuff, once every two weeks

Subscribe

Leave a comment