RSS Comment Feeds
-
This is unbelievably frustrating! I’ve searched a dozen+ topics and most are closed without even being answered.
I’ve looked at https://codex.www.ads-software.com/WordPress_Feeds in detail and am no closer to understanding.
Here is my site: https://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…
- The topic ‘RSS Comment Feeds’ is closed to new replies.