Created
November 22, 2013 04:11
-
-
Save JiveDig/7594757 to your computer and use it in GitHub Desktop.
Archive pages - shorten the content limit
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
| <?php | |
| // Shorten Excerpt | |
| add_filter( 'genesis_pre_get_option_content_archive_limit', 'child_shorten_excerpt' ); | |
| function child_shorten_excerpt( $length ) { | |
| $length = 200; | |
| return $length; | |
| } | |
| ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment