Skip to content

Instantly share code, notes, and snippets.

@sharpmachine
Last active December 31, 2015 04:59
Show Gist options
  • Save sharpmachine/7937825 to your computer and use it in GitHub Desktop.
Save sharpmachine/7937825 to your computer and use it in GitHub Desktop.
Creates a short title from the_title
//Put in functions.php
function short_title($limit) {
global $post;
$title = get_the_title($post->ID);
if(strlen($title) > $limit) {
$title = substr($title, 0, $limit) . '...';
}
echo $title;
}
//Call in template file
<?php the_short_title(30); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment