Skip to content

Instantly share code, notes, and snippets.

@DigitalEssence
Created February 18, 2015 10:31
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 DigitalEssence/02091ec16309117715ef to your computer and use it in GitHub Desktop.
Save DigitalEssence/02091ec16309117715ef to your computer and use it in GitHub Desktop.
Reduce the Latest News Widget excerpt to X words
/* Reduce the Latest News Widget excerpt to X words */
function custom_excerpt_length( $length ) {
return X;
}
add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment