Skip to content

Instantly share code, notes, and snippets.

@webgurus
Created July 18, 2022 10:30
Show Gist options
  • Save webgurus/3d9c6ef82290c23111a3d102629cc981 to your computer and use it in GitHub Desktop.
Save webgurus/3d9c6ef82290c23111a3d102629cc981 to your computer and use it in GitHub Desktop.
Change Excerpt length on Sage 9
/**
* Filter the excerpt length to 39 words.
*
* @param int $length Excerpt length.
* @return int (Maybe) modified excerpt length.
*/
add_filter( 'excerpt_length', function( $length ) {
return 39;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment