Skip to content

Instantly share code, notes, and snippets.

@nefeline
Created September 13, 2017 04:10
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 nefeline/1d302462e9bb2891e87a226c1a775c6e to your computer and use it in GitHub Desktop.
Save nefeline/1d302462e9bb2891e87a226c1a775c6e to your computer and use it in GitHub Desktop.
Change the events excerpt length
<?php
add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );
function custom_excerpt_length( $length ) {
return 300;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment