I’ve been searching for a code snippet that lets me limit the title length similar to what you can to with the_excerpt and then just display “(…)” if the title is too long.
I’d like to use that in loops outside of single.php, e.g. in my sidebar where an extremely long title would harm the layout.
All I could find was this code snippet, but that does obviously not what I want.
function maxWord($title)
{
global $post;
$title = $post->post_title;
if (str_word_count($title) >= 10 ) //set this to the maximum number of words
wp_die( __('Error: your post title is over the maximum word count.') );
}
add_action('publish_post', 'maxWord');
Is it possible at all?
I’m looking for something similar like this, just not for the excerpt, but the title:
function excerpt($limit) {
$excerpt = explode(' ', get_the_excerpt(), $limit);
if (count($excerpt)>=$limit) {
array_pop($excerpt);
$excerpt = implode(" ",$excerpt).' (...)';
} else {
$excerpt = implode(" ",$excerpt);
}
$excerpt = preg_replace('`[[^]]*]`','',$excerpt);
return $excerpt;
}
function content($limit) {
$content = explode(' ', get_the_content(), $limit);
if (count($content)>=$limit) {
array_pop($content);
$content = implode(" ",$content).' (...)';
} else {
$content = implode(" ",$content);
}
$content = preg_replace('/[.+]/','', $content);
$content = apply_filters('the_content', $content);
$content = str_replace(']]>', ']]>', $content);
return $content;
}
This depends 100% on how you’re getting the title. If you’re using a global object (i.e.
$post->post_title
then you’re not passing it through any filters and you’ll have to use some fancy post-processing to pare the title down.However, if you’re inside a post loop, use either
the_title()
to echo the current post’s title orget_the_title()
to return it programatically.If you use one of those two functions, WordPress will automatically pass the post title through a filter before giving it back to you.
Then you can add the following to the top of your
sidebar.php
file:Now, every time you reference
the_title()
orget_the_title()
in your sidebar, they will return the automatically-shortened version instead of the full version.Just remember to remove this filter at the end of your
sidebar.php
file or it will apply elsewhere in your theme as well:Update 10/3/2011
If you want a function you can use anywhere, I recommend making your own versions of
get_the_title()
andthe_title()
and using them in your code. For example:These are copied from the original
the_title()
andget_the_title()
functions, so they should work in the loop the same way. I haven’t tested this, though.You can use the wp_trim_excerpt() function.
If you want need to specify chars limit, you should be able to use the excerpt_length filter.
WordPress API Solution
If you want to trim english only or character only language, using
substring
would be the right way. However, if you want to trim language like Chinese, Japanese or the others, using substring might be awful, since they are using unicode to represent.Using wp_trim_words() would be a simple and direct way to solve your problem.
p.s. inspired by Leo Caseiro.
CSS Only Solution
If you want to find out how to trim the words dynamically especially in responsive design, you should use CSS like this: