• I’m setting up a site that uses 3 categories.Categories 1 and 2 are for the blog, category 3 gets used for something else. I want to have three feeds: One for all the categories, one for just category 3, and one that includes categories 1 and 2.

    I had no problem with the first two, just using the main feed for the first one and using https://www.myurl.com/?feed=rss2&category_name=category3 for the second, but I’m not sure how to do the third. Is there some similar trick to what I did with the second that will allow me to get two categories at once?

Viewing 1 replies (of 1 total)
  • I don’t know of a way using category_name to work this, but with *cat* (which takes the category ID #) you can do this:

    ?feed=rss2&cat=1 2

    That’s categories 1 and 2, with a space between them. To make it a *valid* url query just insert %20 (hexadecimal for space) between them:

    ?feed=rss2&cat=1%202

Viewing 1 replies (of 1 total)
  • The topic ‘Making A Feed For Two Of My Categories’ is closed to new replies.