Skip to content

Instantly share code, notes, and snippets.

@jeroenlammerts
Last active August 29, 2015 13:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jeroenlammerts/9596095 to your computer and use it in GitHub Desktop.
Save jeroenlammerts/9596095 to your computer and use it in GitHub Desktop.
Wordpress RSS no limit
<?php
if (isset ($query->query_vars['feed']) and ($query->query_vars['feed'] == 'ics'))
add_filter('post_limits','no_limits_for_feed');
function no_limits_for_feed($limits) {
return ('') ;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment