Skip to content

Instantly share code, notes, and snippets.

@WebEndevSnippets
Created November 1, 2012 15:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save WebEndevSnippets/3994526 to your computer and use it in GitHub Desktop.
Save WebEndevSnippets/3994526 to your computer and use it in GitHub Desktop.
WordPress: Modify Length of Post Excerpts
/** Modify the length of post excerpts */
add_filter( 'excerpt_length', 'we_custom_excerpt_length' );
function we_custom_excerpt_length($length) {
return 50;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment