Put maximum lines in wordpress summary

0

Hello everyone, I'd like to know how to put a 5-line limit on the summary.

<?php the_excerpt(); ?>

    
asked by anonymous 11.12.2015 / 16:36

1 answer

1

As far as I know by lines you could not do, but could be done by volume of characters as follows:

<?php   
    $content = get_the_content('',FALSE,'');    
    $content = apply_filters('the_content', $content);  
    $content = str_replace(']]>', ']]>', $content);     
    echo substr($content,0,262); 
?>&hellip;
    
11.12.2015 / 16:46