Skip to content

Instantly share code, notes, and snippets.

@coffeepostal
Last active January 19, 2017 23:57
Show Gist options
  • Select an option

  • Save coffeepostal/dbb8feea9a522ae24029f3a1dc14de10 to your computer and use it in GitHub Desktop.

Select an option

Save coffeepostal/dbb8feea9a522ae24029f3a1dc14de10 to your computer and use it in GitHub Desktop.
WordPress: Change the Excerpt Length
<?php
function wpdocs_custom_excerpt_length( $length ) {
return 20;
}
add_filter( 'excerpt_length', 'wpdocs_custom_excerpt_length', 999 );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment