Hello everyone, I'd like to know how to put a 5-line limit on the summary.
<?php the_excerpt(); ?>
Hello everyone, I'd like to know how to put a 5-line limit on the summary.
<?php the_excerpt(); ?>
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);
?>…