Created
January 5, 2019 09:09
-
-
Save Tsunamijaan/807cb030414235e5f2c26d123c651295 to your computer and use it in GitHub Desktop.
To use the WordPress limit 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
| function new_excerpt_more( $more ) | |
| { | |
| return ' Load More'; | |
| } | |
| function custom_excerpt_length( $length ) | |
| { | |
| return 500; | |
| } | |
| add_filter( 'excerpt_length', 'custom_excerpt_length', 500); | |
| add_filter('excerpt_more', 'new_excerpt_more'); | |
| To use:======= | |
| <?php the_excerpt();?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment