Wordpress RSS questions

Discussion in 'XML & RSS' started by Pixelrage, Sep 25, 2007.

  1. #1
    RSS is something I've always ignored - but I wanted to kind of get some insight into what people get out of it. Do the default RSS feeds from Wordpress display post titles only, or entire posts? Also, do the links point to my site, or just open up the article in their RSS module? If they display entire posts, is there a way to disable that? I noticed that by clicking the RSS icon, it simply lists posts by title, according to post date. I just wanted to make sure that is what people are seeing if they include my RSS on their site.

    I also don't understand this concept of "scraping" RSS and using the content to benefit your site with someone else's content...how do you protect against this, and is there anything you have to do to a default Wordpress setup to do it?

    Thanks
     
    Pixelrage, Sep 25, 2007 IP
  2. brandweb

    brandweb Peon

    Messages:
    24
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #2
    In Wordpress your RSS feed can either display full posts or partial posts (you can choose the cut off point by using <!-- more -->). You can change this under Options -> Reading. Some readers will only subscribe to full post RSS feeds, but partial feeds will make users come to your site and help prevent content scraping. If you use a full feed you can still get them to come to your site by linking to older posts, encourage comments, etc.

    Content scraping is done by having a script automatically grab content from other RSS feeds and adding it to a blog. Generally the owner will make dozens of these spam blogs and use Adsense to get some money. However its against copyright, hated by bloggers, and I think against Adsense TOS and can get your site removed from Google if it is reported.
     
    brandweb, Sep 25, 2007 IP
  3. Pixelrage

    Pixelrage Peon

    Messages:
    5,083
    Likes Received:
    128
    Best Answers:
    0
    Trophy Points:
    0
    #3
    brandweb- thanks. I'll look into the Options/Reading section, I kind of ignored that in the past. I definitely want only hyperlinked titles to be showing.
     
    Pixelrage, Oct 1, 2007 IP
  4. theanand

    theanand Active Member

    Messages:
    603
    Likes Received:
    20
    Best Answers:
    0
    Trophy Points:
    60
    #4
    I am looking for a solution to disable wordpress RSS totally. Any chance>?
     
    theanand, Nov 1, 2007 IP
  5. andrej

    andrej Notable Member

    Messages:
    3,210
    Likes Received:
    130
    Best Answers:
    0
    Trophy Points:
    220
    #5
    Maybe just remove the Meta widget?
     
    andrej, Nov 1, 2007 IP
  6. Hummerbie

    Hummerbie Active Member

    Messages:
    52
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    98
    #6
    Hummerbie, Nov 3, 2007 IP
    andrej likes this.
  7. cincyfan

    cincyfan Peon

    Messages:
    1
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #7
    It's pretty easy.

    Edit the file wp-includes/default-filters.php

    Comment out the following lines...

    add_action('do_feed_rdf', 'do_feed_rdf', 10, 1);
    add_action('do_feed_rss', 'do_feed_rss', 10, 1);
    add_action('do_feed_rss2', 'do_feed_rss2', 10, 1);
    add_action('do_feed_atom', 'do_feed_atom', 10, 1);

    Your users will get an error that the feed type is not valid. I laughed and said "THAT'S WHAT I WANTED!"

    Hope that helps.
     
    cincyfan, Apr 16, 2008 IP