Skip to content

Instantly share code, notes, and snippets.

@spencejs
Created March 22, 2013 04:34
Show Gist options
  • Select an option

  • Save spencejs/5218957 to your computer and use it in GitHub Desktop.

Select an option

Save spencejs/5218957 to your computer and use it in GitHub Desktop.
Change Excerpt Length In Wordpress
//Change Excerpt Length
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