• Is it possible truncated the excerpt after , for example 100 characters ?

    Now i’m trying this but don’t work

    <?php if (strlen($post->post_excerpt) > 50) {
    echo substr(the_excerpt($before = '', $after = '', FALSE), 0, 50) . '...'; } else {
    the_excerpt(); } ?>
  • The topic ‘Truncated the excerpt ?’ is closed to new replies.