Adding a new type of feed to WordPress is actually fairly simple. The main function you need to use is `add_feed()`. The `add_feed()` function in itself is also extremely simple. It accepts two arguments: the “name” of the feed (the slug that should be used in the URL) and the callback function that outputs the feed.
University of Tennessee at Chattanooga
October 30, 2013 by Leave a Comment
WordPress Multisite with a custom theme, based on the Bootstrap design of the University’s public site.
Parsing RSS With WordPress
May 10, 2013 by 3 Comments
While fewer and fewer people may be subscribing to RSS feeds (I don’t know if the data actually bear that out yet or not), they are still extremely useful tools in the Web development arsenal. Parsing and using them within a PHP application can be a bit of headache for some, though. Thankfully, WordPress includes […]