Custom Excerpt Length in WordPress

Watch out! This tutorial is over 8 years old. Please keep this in mind as some code snippets provided may no longer work or need modification to work on current systems.
Tutorial Difficulty Level    

Define how many words to return when using the_excerpt();.

//custom excerpt length
function itlc_custom_excerpt_length( $length ) {
	//the amount of words to return
	return 20;
}
add_filter( 'excerpt_length', 'itlc_custom_excerpt_length');