
By strategicjungle on
Hi,
I'm running a drupal site for my podcast, and I'm working on using Wimpy Player to stream my archives, using my feed. However, only the past 15 items in the feed show up.
How do I change the default amount of feed items for a blog to a higher number or is this even possible?
Thank you so much for your help!
Comments
Found the fix
Did some more searching and found the fix. For future reference:
node.module needs to be modified
Reference for future searchers:
if (!$nodes) {
$nodes = db_query_range('SELECT nid FROM {node} WHERE promote = 1 AND status = 1 ORDER BY created DESC', 0, 15);
}
Change "15" to whatever number of items you want to show at once.
You will also need to change blog.module to reflect how many feed items you want to display in your rss feed.
This doesn't work for me.
This doesn't work for me. I made the suggested change, and my feed still has only 15 items in it. It is a taxonomy feed for a flexinode node, running 4.6.3.
I took a look at flexinode.module, but couldn't find anything there having to do with feed items maximum.
Anybody know how I can increase this number?
thanks,
blue
---
Blue Cobalt
Theurgy Foundation
http://www.theurgyfoundation.org
Blue Cobalt
http://livingparadise.org
Conscious living for a better world.
finally found it!
In taxonomy.module since I am using a taxonomy feed
$result = db_query_range($sql, 0, 15);
Change the 15 to whatever you want.
---
Blue Cobalt
Theurgy Foundation
http://www.theurgyfoundation.org
Blue Cobalt
http://livingparadise.org
Conscious living for a better world.