WordPress: how can I get rss feed of just a single post?

I want to get an rss feed for a single post, meaning I just want the whole article in an rss format, exlcuding comments. Is there a way for me to do this in wordpress?

Thanks

Related posts

Leave a Reply

2 comments

  1. Appreciate this is an old one but incase anyone else stumbles upon this, append ?withoutcomments=1 to your URL:

    http://mediasafari.com/news/marketing-careers-announces-two-new-courses/feed/rss/?withoutcomments=1
    
  2. Adding /feed/rss/ on the end of a url give the excerpt of the post for example:

    http://mediasafari.com/news/marketing-careers-announces-two-new-courses/feed/rss/ 
    

    If you change your excerpt to show the full article then that should work:

    <?php
    
    function rssFullText($content) {
        global $post;
        $content = $post->post_content;
        return $content;
    }
    
    add_filter('the_excerpt_rss', 'rssFullText');
    
    ?>