Skip to content

Instantly share code, notes, and snippets.

@WordPress-Handbuch
Last active April 10, 2019 08:00
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 WordPress-Handbuch/1b5c69e4ec56f142082e2fb259f98019 to your computer and use it in GitHub Desktop.
Save WordPress-Handbuch/1b5c69e4ec56f142082e2fb259f98019 to your computer and use it in GitHub Desktop.
Change WordPress excerpt length through the hook excerpt_lengt
function wh_set_excerpt_length( $length ) {
return 150;
}
add_filter( 'excerpt_length', 'wh_set_excerpt_length' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment