Forums

[resolved] RSS Comment Feeds (5 posts)

  1. tojasonharris
    Member
    Posted 12 months ago #

    This is unbelievably frustrating! I've searched a dozen+ topics and most are closed without even being answered.

    I've looked at http://codex.wordpress.org/WordPress_Feeds in detail and am no closer to understanding.

    Here is my site: http://www.teaminfocus.com.au

    Currently, I have my normal feed running through FeedBurner. All good.

    But I want to add a comments feed and a single category feed. And no matter what I do or try, nothing works. I have only a vague understanding of what makes the whole thing run. So I have the following code in my "header" file.

    <link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php if($eb_feedburner_address) { echo $eb_feedburner_address; } else { bloginfo('rss2_url'); } ?>" />
    
    <link rel="alternate" type="application/rss+xml" title="BlogWatch RSS Feed" href="<?php echo get_settings('home'); ?>/category/blogwatch/feed" />
    
    <link rel="alternate" type="application/rss+xml" title="Comments RSS Feed" href="<?php echo get_settings('home'); ?>/comments/feed" />

    But it doesn't actually work. It shows up as a feed to subscribe to, but when you subscribe, it subscribes to something unrelated.

    I need help...

  2. tojasonharris
    Member
    Posted 12 months ago #

    I've googled this extensively and can't seem to find the angle I'm dealing with...

  3. tojasonharris
    Member
    Posted 11 months ago #

    *sigh*

  4. Triple P
    Member
    Posted 11 months ago #

    For the comments, try

    href="<?php bloginfo('wpurl'); ?>/comments/feed"

  5. tojasonharris
    Member
    Posted 11 months ago #

    Didn't work...

Reply

You must log in to post.

About this Topic