Skip to content

Instantly share code, notes, and snippets.

@deeman
Created September 29, 2019 11:34
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 deeman/e443cf1e03377fe0b821d2874a508017 to your computer and use it in GitHub Desktop.
Save deeman/e443cf1e03377fe0b821d2874a508017 to your computer and use it in GitHub Desktop.
WordPress: How to change default 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