Skip to content

Instantly share code, notes, and snippets.

@jfeliweb
Created October 16, 2014 17:21
Show Gist options
  • Save jfeliweb/216f86956cc79375b109 to your computer and use it in GitHub Desktop.
Save jfeliweb/216f86956cc79375b109 to your computer and use it in GitHub Desktop.
Controlling Excerpt Length Using Filters
function custom_excerpt_length( $length ) {
return 20;
}
add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment