RSS Feed Broken – Limit?

Ok, nevermind…

We figured out we can pull individual feeds for each categories and so we set the general overall limit back to 10. And here is function to override general limit.

function custom_rss_limits($limits) { if (is_feed() && is_category(‘category-slug’)) { // target a specific feed category and set a unique limit return "LIMIT 0, 20"; } else { // It's not a feed; leave the normal LIMIT in place. return $limits; } } add_filter('post_limits', 'custom_rss_limits');

Hopefully that helps someone.