Skip to content

Instantly share code, notes, and snippets.

@someguy9
Created March 17, 2020 12:27
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 someguy9/e490bd1f75f95477e790ed3f7e4be50b to your computer and use it in GitHub Desktop.
Save someguy9/e490bd1f75f95477e790ed3f7e4be50b to your computer and use it in GitHub Desktop.
Change the default excerpt length in WordPress (default is 55 words)
<?php
//Change the default excerpt length in WordPress (default is 55 words)
function smartwp_change_excerpt_length( $length ) {
return 24;
}
add_filter( 'excerpt_length', 'smartwp_change_excerpt_length', 9999);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment