Quote:
Originally Posted by Slapyo
that would be up to the feed itself if they were to accept something like that. i mean i guess you could go into the code and change the loop so that it didn't loop from:
0 -> # news articles
to
0 -> 10 (or 5)
|
I'd like to know this too as I only want a few news posts per day.
Joe
Would changing this:
for($j = count($rss_allItems) - 1; $j >= 0; $j--) {
to this work:
for($j = 10 - 1; $j >= 0; $j--) {
???????
Joe