Skip to content

Instantly share code, notes, and snippets.

@erickolivares
Last active November 24, 2015 21:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save erickolivares/eb38b3ad28ddf9ed3063 to your computer and use it in GitHub Desktop.
Save erickolivares/eb38b3ad28ddf9ed3063 to your computer and use it in GitHub Desktop.
if (strlen(get_the_excerpt()) > 340) {
echo substr(get_the_excerpt(), 0, 340) . '...'; } else {
echo get_the_excerpt();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment