Skip to content

Instantly share code, notes, and snippets.

@georgioupanayiotis
Created February 12, 2015 16:36
Show Gist options
  • Save georgioupanayiotis/a46f22d28e80e455e4a0 to your computer and use it in GitHub Desktop.
Save georgioupanayiotis/a46f22d28e80e455e4a0 to your computer and use it in GitHub Desktop.
CHANGE POST EXCERPT LENGTH IN WORDPRESS
function your_excerpt_length( $length ) {
return 70;
}
add_filter( 'excerpt_length', 'your_excerpt_length' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment