Last active
July 24, 2019 14:06
-
-
Save mennwebs/1bfb4f3419d3a8e83c37ed557cb76c4c to your computer and use it in GitHub Desktop.
แก้ความยาว Excerpt ของ WordPress (default: 50)
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 | |
| /** | |
| * Excerpt change from 50 | |
| */ | |
| function seed_excerpt_length( $length ) { | |
| return 100; | |
| } | |
| add_filter( 'excerpt_length', 'seed_excerpt_length', 100 ); | |
| function seed_excerpt_more( $more ) { | |
| return '...'; | |
| } | |
| add_filter( 'excerpt_more', 'seed_excerpt_more' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment