MyBB Community Forums

Full Version: Can you get an RSS per thread?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Can you get an RSS per thread/topic?
I know you can get it per forum(s) but i would like to know if you can get it per thread?
You mean to say RSS of posts for a particular thread?
That should be possible for sure either with a plugin or core edit to syndication.php.

Check how syndication.php calls for thread using a simple query, (https://github.com/mybb/mybb/blob/featur...n.php#L160). You can write a similar function for posts table and it should work.

Regards
WallBB
I am not that great with PHP or MySQL. Plus, i havent done much coding in the past year so i am out of it in terms of writing code.
The target of Syndication is Forum / Category.
It fetches the feeds on thread basis. Post basis syndication is not supported in MyBB til now in view of RSS reader's approach to be topic only. But it is planned feature to fetch the feed on post basis as well.

You can target a forum / category for fetching feeds, not a single thread.
is that something that can be a core edit to syndication.php to add to collect a single thread in addition to forum RSS?