convrt rss feed to short

rajeshag

Power Member
Joined
Feb 20, 2020
Messages
668
Reaction score
87
I am pulling rss feed of blog ,but its full article
I dont want whole,only summary,is it possible?
 
I am pulling rss feed of blog ,but its full article
I dont want whole,only summary,is it possible?
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
 
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?
 
nice,but easy way any? any plugin etc?

There'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);
 
There'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);
sorry abt spoon feeding
I am not a coder and dont have budget
where to put this in wordpress site
 
Back
Top