Skip to content

Instantly share code, notes, and snippets.

@tacensi
Created February 12, 2015 17:00
Show Gist options
  • Save tacensi/fc1cb19defc557547f88 to your computer and use it in GitHub Desktop.
Save tacensi/fc1cb19defc557547f88 to your computer and use it in GitHub Desktop.
Define the WP Post excerpt length
// Excerpt length
function custom_excerpt_length( $length ) {
return 20;
}
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