Skip to content

Instantly share code, notes, and snippets.

@scottnix
Created September 4, 2013 14:19
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 scottnix/6437600 to your computer and use it in GitHub Desktop.
Save scottnix/6437600 to your computer and use it in GitHub Desktop.
Thematic/WordPress change default excerpt length
// change the excerpt length, default WP value is 55 words
function childtheme_excerpt_length($length) {
return 5; // 5 words
}
add_filter('excerpt_length', 'childtheme_excerpt_length');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment