Hey Patrick,
I tried adding the code you suggested directly to a Page Template, but it doesn’t seem to be drawing the feed, because the space is completely blank.
Here’s the code I entered into the Page Template where PHP should be accepted:
<?php
include_once(ABSPATH . WPINC . '/rss.php');
$rss = fetch_rss('http://www.livestrong.com/thedailyplate/diary/rss/Fokissed/');
$maxitems = 8;
$items = array_slice($rss->items, 0, $maxitems);
?>
And here’s the page where it should be showing up, but it’s not:
http://www.geek2freak.com/diet-log/
Any help would be greatly appreciated.