troyaustin
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Setup Site To Import RSS Feedsi installed cg-feedreader plug-in and have been able to get it to work, although i am having problems with getting images to show up in the feed.
in the read me file, cg-feedreader gives you an example of the code you need to use. here is some other code that i found that is easier to read.
<?php
$feedUrl = “http://dadlabs.com/coachbobby/?feed=rss2”;
$maxItemsPerFeed = ’10’;
$showDetails = true;
$cacheName = “coachbobby_feed”;
$filterCat=”;
$tLimit = -1;
$dLimit = 10;
$noHTML = true;
$showTime = false;
$feedStyle = false;
$noTitle = true;
$showTimeGMT = true;
$titleImages = false;
$multiSiteTitle = false;
$makeRSS = false;
$rssLink=””;$feedOut = getSomeFeed($feedUrl, $maxItemsPerFeed, $showDetails,
$cacheName, $filterCat, $tLimit, $dLimit, $noHTML, $showTime,
$feedStyle, $noTitle, $showTimeGMT, $titleImages, $multiSiteTitle,
$makeRSS, $rssLink);if (!empty($feedOut))
{
start_block(“Coach Bobby Blog”, “feedread”, “li”);
echo $feedOut;
end_block();
}
?>Forum: Fixing WordPress
In reply to: cms question — how to take my 8 blogs and put onto main pageThanks —
Do you know which of the RSS is best for wp 2.x ?
I seemed to come across CG Feed Read alot, but it seems to stop at 1.5.
I will try RSS, but still curious as to how it would be done without RSS if anyone is knows.
Forum: Fixing WordPress
In reply to: cms question — how to take my 8 blogs and put onto main pageIs using RSS the best solution? (not a rhetorical question — i really don’t know)
Or is it easier/better/faster to call the latests posts directly from my site since they are all stored on my own server?