Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

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 vladimirlukyanov/58dfa637f3b0c7f27d9a to your computer and use it in GitHub Desktop.
Save vladimirlukyanov/58dfa637f3b0c7f27d9a to your computer and use it in GitHub Desktop.
Cut length of content to x symbols
<?php
$content = get_the_excerpt();
if (strlen($content) > 50) {
$content = substr($content, 0, 100) . '…';
}
print $content;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment