views:

25

answers:

1

We have a Drupal website with a seperate RSS feed for every blogger on the site. There will be an indeterminate number of new users signing up and blogging in the future. Drupal automatically generates an RSS feed for each new blog. Is there a way to automatically burn each feed as well? We'd like to avoid manually adding a new feed to Feedburner every time a new user starts their blog.

A: 

Consider using the Views module to create an overall master view of all blog articles on your site, regardless of user. E.g. Add the node title and user name fields and filter on node type = "Blog article". Then, just create a feed display for this master view and burn that instead.

Craig Hyatt

related questions