Skip to content

Instantly share code, notes, and snippets.

@beovulf
Created February 2, 2016 20:54
Show Gist options
  • Save beovulf/fbbd281dd69a1e7dd5e4 to your computer and use it in GitHub Desktop.
Save beovulf/fbbd281dd69a1e7dd5e4 to your computer and use it in GitHub Desktop.
Excerpt length limit by word
function new_excerpt_length($length) {
return 20;
}
add_filter('excerpt_length', 'new_excerpt_length');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment