Created
March 20, 2018 00:46
-
-
Save nicdford/7b5dcf3b44431e590057626aa69578c2 to your computer and use it in GitHub Desktop.
Create excerpt from variable
This file contains 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
/** | |
* Create excerpt from content | |
*/ | |
function pac_create_exerpt( $content ) { | |
return wp_trim_words($content, 15, '...'); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment