Skip to content

Instantly share code, notes, and snippets.

@smonteverdi
Created April 19, 2012 18:11
Show Gist options
  • Save smonteverdi/2422720 to your computer and use it in GitHub Desktop.
Save smonteverdi/2422720 to your computer and use it in GitHub Desktop.
WordPress: Customize Excerpt Length
add_filter('excerpt_length', 'my_excerpt_length');
function my_excerpt_length($length) {
return 20; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment