Yes.I am pulling rss feed of blog ,but its full article
I dont want whole,only summary,is it possible?
https://stackoverflow.com/questions/965235/how-can-i-truncate-a-string-to-the-first-20-words-in-php
nice,but easy way any? any plugin etc?Yes.
See the approved answer. You can limit by the number of words. You can also limit by the number of characters, but it will result with an unfinished word.
Code:https://stackoverflow.com/questions/965235/how-can-i-truncate-a-string-to-the-first-20-words-in-php
nice,but easy way any? any plugin etc?
<?php
echo sub str('Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.', 0, 10);
sorry abt spoon feedingThere's no other easy way better than
PHP:<?php echo sub str('Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.', 0, 10);