Most guides on automated content curation are just tool lists. This one walks through the full setup on WordPress: how to add sources, filter for relevance, import as posts, choose a display, and add editorial value with AI. Includes a five-step tutorial using WP RSS Aggregator, quality control tips, and five real-world use cases.
Mark Zahra
Table of contents
Streamline your
content-sharing process
Get started with WP RSS Aggregator today and unlock the full potential of RSS feeds!
New Feature
AI Summaries
RSS Tricks: How To Provide an RSS Feed for a Post’s Comments
This RSS trick isn’t much of a trick at all.
In fact it’s a function that’s built right into WordPress, but one that very few know of.
We’ve all come across a post that has a long (and I mean LONG) list of comments associated with it. Keeping track of these comments can be hard for the author, let alone the readers.
The Fix
This is why WordPress offers the following function to provide an RSS feed specifically for the comments of a particular post.
<?php post_comments_feed_link('» Comments RSS Feed'); ?>Now there are 2 ways that you can implement this:
function my_wp_list_comments_args( $args ) { post_comments_feed_link( '» Comments RSS Feed' ); // Don't forget to return the original arguments return $args; } add_filter( 'wp_list_comments_args', 'my_wp_list_comments_args' );How It Works
Calling this line of code will simply call the post_comments_feed_link() function that provides an RSS feed for the comments of a specific post, making it easier for your readers to keep track of those many, many comments.
Source: WP Recipes
Article by
Mark Zahra
Article by
Mark Zahra
Related Articles
Automated Content Curation: How to Build a Content Pipeline That Runs Itself
Most guides on automated content curation are just tool lists. This one walks through the full setup on WordPress: how to add sources, filter for relevance, import as posts, choose a display, and add editorial value with AI. Includes a five-step tutorial using WP RSS Aggregator, quality control tips, and five real-world use cases.
How to Find the RSS Feed URL for Any Website (5 Methods)
Most websites have RSS feeds but don’t advertise them. Here are five methods to find the feed URL for any site, from simple URL tricks to search operators, plus a cheat sheet of feed URL patterns for 10 popular platforms.
Google News RSS Feed: How to Find, Build, and Use Custom News Feeds
Google News has RSS feeds for topics, keyword searches, and locations, but no official documentation for them. This guide covers every URL format, search operator, and how to display Google News feeds on your WordPress site.