Created
July 29, 2014 23:32
-
-
Save rayflores/ff9ad0dcf377f8c40df7 to your computer and use it in GitHub Desktop.
excerpt _new_ 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
<?php | |
function new_excerpt_length( $length ) { | |
// change from default length of 55 | |
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