• I searched but couldn’t find my question asked before… real quick

    <?php echo getSomeFeed(‘(the feed is in here)’, 5, false, “TEST”, ”, ”, ”, true, true, false); ?>

    The thing is, it only displays two feed items, and it displays the date underneath them. It’s weird because I have that same exact line of code in another blog of mine, for the same feed, and it displays properly, only that blog is 1.5. Any ideas?

Viewing 3 replies - 1 through 3 (of 3 total)
  • 1.x vs 2.x shouldn’t make any difference, as CG-FeedRead has no reliance on WP code. 😉

    I’m looking at a version here that has the following parameters:

    function getSomeFeed($InUrl, $maxItemsPerFeed,
    $showDetails, $cacheName, $filterCat,
    $tLimit, $dLimit, $noHTML,
    $showTime, $feedStyle, $noTitle,
    $showTimeGMT, $titleImages, $multiSiteTitle,
    $makeRSS, $rssName, $rssLink)

    So, you could try just:

    <?php echo getSomeFeed('feedurl', 5, false, 'test'); ?>

    And leave out the rest — it’ll use the default settings, which (I think) are what you want anyway. You were actually telling it to show timestamps there…

    -d

    Thread Starter questionman

    (@questionman)

    oh woops I feel stupid. Thanks david, I appreciate your response and (from what ive seen in previous posts) dedication to your product. I realized I only had 2 feeds because this particular site is only currently outputting 2 :-p

    :-p

    That’ll teach ya! 😉

    -d

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

The topic ‘cg-feedread wordpress 2.0 question’ is closed to new replies.