I don't know how many of you have heard of SimpliePie. Its a free open source RSS parser I am currently using the Simplepie Wordpress plugin. I have managed to parse RSS feeds on some wordpress pages. However. I just cannot make out how to add multiple feeds to make a single parsed feed. The functionality is there but the documenation is very complex for me to understand. This is the code required to parse a single rss feed whether in a page or post (and you probably need exec-php plugin enabled): <?php echo SimplePieWP('http://simplepie.org'); ?> Code (markup): In the above code, you just have to replace http://simplepie.org with your desired rss feed url. Again, my question is what code do I need to add in a page or post to add multiple feed source urls?
Thanks. I didn't know there was a built in functionality for this. Will try it out and post the result