Last active
May 18, 2019 20:55
-
-
Save Asikur22/939886d5947edf6521ff2ab95aff2efb to your computer and use it in GitHub Desktop.
Modify Excerpt
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
| /* | |
| * Limit Excerpt Length | |
| */ | |
| function custom_excerpt_length($length) { | |
| return 15; | |
| } | |
| add_filter('excerpt_length', 'custom_excerpt_length', 999); | |
| /* | |
| * Remove Wordpress More tag. | |
| */ | |
| function custom_excerpt_more($more) { | |
| return ''; | |
| } | |
| add_filter('excerpt_more', 'custom_excerpt_more'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment