Forums

HowTo: Limit title words (2 posts)

  1. N33D
    Member
    Posted 3 years ago #

    Ok guys, i use WordPress for a while now, but just starting to make my own themes.

    I don't know how excerpt exactly work, but maybe i must use it. I searched on Google and this about this issue but none worked for me.

    Question:
    I want to limit the number of words shown on the title. I did it with the "Content and Excerpt Word Limit" on the content, but the same does not work on the Title. Now i use some char limiter function but i want to have limit in words.

    Can someone help me? Searching for days now..

    Thanks

  2. bgmathew
    Member
    Posted 2 years ago #

    limit the number of charecters in a title

    <?php if (strlen($post->post_title) > 35) {
    echo substr(the_title($before = '', $after = '', FALSE), 0, 35) . '...'; } else {
    the_title();
    } ?>

Topic Closed

This topic has been closed to new replies.

About this Topic

Tags