RSS Feed of 200 entries in a category?
-
How do I create a feed with the last 200 entries in a specific category?
The only way I’ve figured out how to do this is with:
<?php while( have_posts()) : the_post(); ?> <?php if (in_category('1')) continue; ?>
… but this doesn’t work because I have 5000 entries in the system, and only 200 total entries in this category, and the above code times out when the feed is set to display anything above 3800 entries.
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘RSS Feed of 200 entries in a category?’ is closed to new replies.