Created
July 24, 2014 19:27
-
-
Save octavian-filipciuc-work/8817f641b5c2acad7245 to your computer and use it in GitHub Desktop.
Short content
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
| $get_content = get_the_content(); | |
| $get_content = strip_tags($get_content); | |
| $content_mini = substr($get_content, 0, 160); | |
| echo $content_mini; | |
| if (strlen($get_content) > 160) { | |
| echo "..."; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment