Skip to content

Instantly share code, notes, and snippets.

@nefeline
Created September 13, 2017 04:10
Show Gist options
  • Select an option

  • Save nefeline/1d302462e9bb2891e87a226c1a775c6e to your computer and use it in GitHub Desktop.

Select an option

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