Skip to content

Instantly share code, notes, and snippets.

@mattradford
Created October 17, 2014 08:53
Show Gist options
  • Save mattradford/f6d33e9da34f07cc8eb2 to your computer and use it in GitHub Desktop.
Save mattradford/f6d33e9da34f07cc8eb2 to your computer and use it in GitHub Desktop.
Custom excerpt length
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