Created
November 28, 2014 06:43
-
-
Save pasadamedia/d5406dcc74da46d73a15 to your computer and use it in GitHub Desktop.
Modify the post excerpt length.
This file contains hidden or 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
/** | |
* Modify the post excerpt length (default is 55 words). | |
* | |
*/ | |
function reduce_excerpt_length() { | |
return 30; | |
} | |
add_filter( 'excerpt_length', 'reduce_excerpt_length', 100 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment