Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Using RSS Feeds

There are links to the RSS feeds on every page that has them (… except the front page… what happened it that one… ?)

The URLs are:

http://bbpress.example.com/rss/ for the main feed

http://bbpress.example.com/rss/forum/1 for the feed for forum with ID = 1

http://bbpress.example.com/rss/topic/1 for the feed for topic with ID = 1

http://bbpress.example.com/rss/profile/1 for the feed for the user favorites of user with ID = 1

http://bbpress.example.com/rss/tag/bbpress for the feed for the ‘bbpress’ tag.

These URLs can be easily generated by:

get_recent_rss_link();

get_forum_rss_link();

get_topic_rss_link();

get_tag_rss_link();

get_favorites_rss_link();

or echoed with recent_rss_link(), forum_rss_link(), etc.

The content for the feed is generated by /rss.php on bb-templates/rss2.php and is fully pluggable.

Skip to toolbar