Skip to content

Instantly share code, notes, and snippets.

@harishankerr
Created January 10, 2017 16:20
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 harishankerr/7e002551cd44b755994a017cb50a4682 to your computer and use it in GitHub Desktop.
Save harishankerr/7e002551cd44b755994a017cb50a4682 to your computer and use it in GitHub Desktop.
//Code to increase the excerpt length in WordPress.
function custom_excerpt_length( $length ) {
return 100; // This is the number of words.
}
add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment