Forums

Limit number of characters in the_title() ? (3 posts)

  1. wizzart
    Member
    Posted 3 years ago #

    How to displey only first 10 characters of Post title?

    Thanks

  2. jbbrwcky
    Member
    Posted 3 years ago #

    Try this:

    <?php
    $tit = the_title('','',FALSE);
    echo substr($tit, 0, 10);
    ?>
  3. wizzart
    Member
    Posted 3 years ago #

    Thanks, it working, not perfect but working

Topic Closed

This topic has been closed to new replies.

About this Topic