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

Submitted by: Muhammad
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');
Submitted by: Muhammad

Read Online WordPress Themes Developer Job Interview Questions And Answers