Created
February 25, 2019 16:05
-
-
Save Sanabria/f748a36ff98bff45954479ee9d0af580 to your computer and use it in GitHub Desktop.
Custom 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 custom_read_more() { | |
return '... <a class="read-more" href="'.get_permalink(get_the_ID()).'">more »</a>'; | |
} | |
function excerpt($limit) { | |
return wp_trim_words(get_the_excerpt(), $limit, custom_read_more()); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Borrowed from: https://stackoverflow.com/questions/4082662/multiple-excerpt-lengths-in-wordpress/17177847#17177847