JavaScript (jQuery + MooTools) get WordPress Posts from RSS as JSON
The url is structured like so: http://ajax.googleapis.com/ajax/services/feed/load?v=1.0&num=10&q=[encoded URL of RSS feed] Replace [encoded URL of RSS feed] with the URL of the WP blog you want to fetch posts from. I’ll use mine (http://upshots.org/feed) for the samples. With either method, you’ll get back an object with the following keys: responseData responseDetails responseStatus responseData has a [...] more
PHP – List Most Recent YouTube videos
Include a list (as links, or embeds) of your most recent X videos from a YouTube channel: more
Creating a simple RSS feed – the upshot
Really Simple Syndication is simple. Really. The upshot: 1. It’s an XML document (so open it with a standard XML tag) 2. The root node should be an “rss” element with (at minimum) an attribute for the version: 3. Children are described with “title”, “description” and “link” elements. None have required attributes. 4. Direct children [...] more