Jump to content

zonetrap

New Members
  • Posts

    3
  • Joined

  • Last visited

    Never

Everything posted by zonetrap

  1. You are correct, Buyocat, I needed to make it clearer. I am pulling in a feed from another site, not altering the Wordpress feed of my posts. The code I published before, is the feed Im getting from pokernews. If pokernews had a daily article titled, "Hand Discussion", how would I go about feeding that article only to my site? How can I limit which titles are fed to my site?
  2. I am working on some RSS feeds for my Wordpress website. I was able to get one feed in with this code: <phpcode> <?php $feedUrl = "http://www.pokernews.com/news/rss.xml#"; $maxItemsPerFeed = '99'; $showDetails = true; $cacheName = "pokernews"; $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 ($feedOut) echo $feedOut; ?> </phpcode> Is there a way to filter on a certain title. For example, if I know there will be a daily article titled "Hand Discussion", is there a way to just bring those articles in?
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.