WordPress get all posts in RSS. Codex has example snippet on how to use post_limits filter to override amount set in admin for feed.
1 2 | if (isset ($query->query_vars['feed']) and ($query->query_vars['feed'] == 'ics')) add_filter('post_limits','__return_empty_string'); |
If you like this question & answer and want to contribute, then write your question & answer and email to freewebmentor[@]gmail.com. Your question and answer will appear on FreeWebMentor.com and help other developers.