• I recently started using the CG-FeedRead plugin to try and grab info from several WP blogs to post on an index.php page elsewhere in my domain. It seems like I’m setting the options correctly for what I would like. I want the RSS to display as below:
    —————–
    (no blog title – I figured out this option)
    the post title of the most recent entry
    followed by a truncated, 200-character description using the excerpt of the wp post
    —————–
    but the feedreader seems to only return the title – no description shows up, even though the post definitely has an excerpt. Here’s the code I’m passing to CG-FeedRead – could you all let me know if I screwed up some option or another? Thanks!

    <?php
    $feedUrl = "https://www.thisistheurl.com/wp-rss2.php?cat=2";
    $feedOut = getSomeFeed($feedUrl, 1, false, "thisisthetestcache", '', 36, 200, false, false, 0, true);
    if ($feedOut)
    echo $feedOut;
    ?>

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter sonoflee

    (@sonoflee)

    OOPS, my mistake entirely. Please disregard this message!

    Just in case other people run into similar issues, it was that the RSS feed in question was using full content, not excerpts. A simple change within the admin panel to have your RSS feed use excerpts will fix that… ??

    -d

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘CG-FeedRead – how to get wp excerpts?’ is closed to new replies.