Skip to content

Instantly share code, notes, and snippets.

@pasadamedia
Created November 28, 2014 06:43
Show Gist options
  • Save pasadamedia/d5406dcc74da46d73a15 to your computer and use it in GitHub Desktop.
Save pasadamedia/d5406dcc74da46d73a15 to your computer and use it in GitHub Desktop.
Modify the post excerpt length.
/**
* Modify the post excerpt length (default is 55 words).
*
*/
function reduce_excerpt_length() {
return 30;
}
add_filter( 'excerpt_length', 'reduce_excerpt_length', 100 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment