Skip to content

Instantly share code, notes, and snippets.

@CreativeDive
Last active January 28, 2020 08:08
Show Gist options
  • Save CreativeDive/9c58bbb36a84b0df695697b765d5b152 to your computer and use it in GitHub Desktop.
Save CreativeDive/9c58bbb36a84b0df695697b765d5b152 to your computer and use it in GitHub Desktop.
Customize the length of the WordPress post excerpt in words.
if( ! function_exists('wordpress_excerpt_length') ) :
function wordpress_excerpt_length( $length ) {
return 55; // <-- Word count
}
endif;
add_filter( 'excerpt_length', 'wordpress_excerpt_length', 999 );
@CreativeDive
Copy link
Author

Further explanation about how you can customize the WordPress post excerpt (DE Version)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment