Skip to content

Instantly share code, notes, and snippets.

@lswilson
Last active December 17, 2015 20:09
Show Gist options
  • Save lswilson/5665875 to your computer and use it in GitHub Desktop.
Save lswilson/5665875 to your computer and use it in GitHub Desktop.
Shorten title UTF8 (useful for cyrillic languages)
//display only first 45 characters in the title.
$short_title = mb_substr(the_title('','',FALSE),0, 45);
echo $short_title;
if (strlen( utf8_decode($short_title) ) > 44){
echo '...';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment