Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • i 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&#8221;;
    $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();
    }
    ?>

    Thread Starter troyaustin

    (@troyaustin)

    Thanks —

    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.

    Thread Starter troyaustin

    (@troyaustin)

    Is 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?

Viewing 3 replies - 1 through 3 (of 3 total)