Changing gFeed so that I can also get the thumbnails form the feeds
Hi,
I would like to know what I should change in the jquery.gfeed.js script so that I can also get the thumbnails from the feeds. Here is my code:
<script type="text/javascript" src="http://jquery.malsup.com/gfeed/jquery.gfeed.js"></script>
...
<script type="text/javascript">
// when the DOM is ready, convert the feed anchors into feed content
$(document).ready(function() {
// add a feed manually
$('.myFeeds').gFeed({
max: 5, // number of items displayed
url: 'http://feeds.feedburner.com/apartmenttherapy/unplggd?format=xml',
title: ''
});
});
</script>
<div class="myFeeds"></div>
Right now I am only able to see the feeds but no the thumbnails (as you can see if you type feeds.feedburner.com/apartmenttherapy/unplggd?format=xml on your browser). What should I modify?
Thanks in advance :) I do appreciate your time