Skip to content

Instantly share code, notes, and snippets.

@fueledbyboredom
Created February 14, 2017 16:41
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 fueledbyboredom/cf167c1022fc2be8e31fb8a964757c59 to your computer and use it in GitHub Desktop.
Save fueledbyboredom/cf167c1022fc2be8e31fb8a964757c59 to your computer and use it in GitHub Desktop.
Customize the length of excerpts, in this example we are returning 20 words
<?php
function mwpf_custom_excerpt_length( $length ) {
return 20;
}
add_filter( 'excerpt_length', 'mwpf_custom_excerpt_length');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment