0
Hello guys I would like to know how do I put a limit of 5 lines in the summary.
<?php the_excerpt(); ?>
0
Hello guys I would like to know how do I put a limit of 5 lines in the summary.
<?php the_excerpt(); ?>
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);
?>…
Browser other questions tagged php wordpress
You are not signed in. Login or sign up in order to post.
vlw friend I got...
– kaiquemix