Answers

Question and Answer:

  Home  WordPress Theme Development

⟩ Explain me how to Change the Length of the Default WordPress Excerpt?

The default WordPress excerpt is 55 words long. By modified bit to your functions.php file you can change the length to as you required.Below is the code if we need 60 length.

function new_excerpt_length($length) {

return 42;

}

add_filter('excerpt_length', 'new_excerpt_length');

 139 views

More Questions for you: