This is the code I’m using to parse the WP feed:
require_once 'rss/rss_fetch.inc';
$url = 'http://benvalentine.info/blog/?feed=rss2';
$rss = fetch_rss($url);
if($rss) {
foreach ($rss->items as $item) {
$link = $item['link'];
$title = $item['title'];
echo '<p>>> <a href="' . $link . '">'.$title.'</a></p>';
}
}
print_r($rss) was only able to pull up the most recent feed and nothing else. The code above produces no errors or feed items.