WordPress has the capability to generate rss feeds based on tags or categories such as:
mywebsite/feed/?tag=film or
mywebsite/feed/?cat=5
I need to be able to do both of these combined. For example, I would like an RSS feed that will display all the posts in category 5 that are tagged as film. This could look like:
mywebsite/feed/?cat=5&tag=film
However, this breaks and displays nothing. I can only do one or the other, not both tags and categories combined. Does anyone know of a way to do this? I've looked all over and haven't been able to find anything regarding it. I appreciate any suggestions.