Per a suggestion from EJ, I’m going to try my hand at getting together a WordPress RSS feed that includes full text and comments. Granted, my blog does have a feed for just comments (see?), I was thinking it should be easy to show the feed PLUS the comments since most of WordPress’s tags are through PHP.

On first glance at the code, I see the RSS feed utilizes the wfw namespace elements, so in external blog readers, the comments probably just terrace from the main post (which is cool with me). But I know in Bloglines, that ain’t happening. So a little more diving.

Part of the code looks like this:

<title>< ?php the_title_rss() ?>;</title>
<link>link_single_rss() ?></link>
<comments><?php comments_link(); ?></comments>

After consulting the WordPress Wiki, I found the <? php comment_text ?> and the <? php comment_text_rss ?> tags, both of which should work if substituted in the <comments> loop here. So I changed it. Keep your fingers crossed.

UPDATE: I’ll also study this to see if I can gain a little more insight. Perhaps the answer lies in the CDATA tag? Hmm….

UPDATE: With Monkie’s help, I’ve been able to tweak the RSS 2.0 feed to include comments. Of course, since this pulls directly from my modified wp-comments.php, things could look a little ugly. I’ll check once Bloglines picks up this update.