Hi. I'm having trouble with importing my RSS feed into my page. I'm able to import my rss feed. But none of the images show up, or the styles. So it displays all the content unformatted, and no image, or image "img src" tag.
This is what my getSomeFeed looks like;
------------
<?php
$feedUrl = "http://gerardogarzastudio.net/source/wp-rss2.php";
$feedOut = getSomeFeed($feedUrl, 5, true, "feed-cache_source", '', -1, false, $noHTML = true, $showTime = true, $showTimeGMT = true, $titleImages = true);
if ($feedOut)
echo $feedOut;
?>
--------
Can anyone tell me what I'm doing wrong?
http://gerardogarzastudio.net/index.php <- php file
http://gerardogarzastudio.net/source/wp-rss2.php <- rss feed
http://gerardogarzastudio.net/source <- wordpress blog default. which no one will see. The idea is to just post and import into my formatted site.
Thanks for your help!