Skip to content

Instantly share code, notes, and snippets.

@mbrughi
Created November 1, 2017 17:49
Show Gist options
  • Save mbrughi/88264259625c8a0aa36b0eeaa7c08a9e to your computer and use it in GitHub Desktop.
Save mbrughi/88264259625c8a0aa36b0eeaa7c08a9e to your computer and use it in GitHub Desktop.
Wordpress: change excerpt lenght.
function my_excerpt_length( $length ) {
$length = '35'; // change the length in words you want
return $length;
}
add_filter( 'excerpt_length', 'my_excerpt_length' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment