Skip to content

Instantly share code, notes, and snippets.

@octavian-filipciuc-work
Created July 24, 2014 19:27
Show Gist options
  • Select an option

  • Save octavian-filipciuc-work/8817f641b5c2acad7245 to your computer and use it in GitHub Desktop.

Select an option

Save octavian-filipciuc-work/8817f641b5c2acad7245 to your computer and use it in GitHub Desktop.
Short content
$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