Created
September 27, 2014 15:04
-
-
Save Vesymos/13d9873249364bc54443 to your computer and use it in GitHub Desktop.
Changing Excerpt Length
From https://wordpress.org/support/topic/changing-excerpt-length
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function new_excerpt_length($length) { | |
return 200; | |
} | |
add_filter('excerpt_length', 'new_excerpt_length'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment