Skip to:
Content
Pages
Categories
Search
Top
Bottom

Combining BBpress RSS feed with WordPress Rss feed Possible?

  • I was wondering if there was a way to combine the rss feeds for both the bbpress (plugin), and wordpress.

    The reason is that I would like for people to be able to subscribe, and get one email (via feedburner) that has all posts/forum threads, etc. for the day.

    Is it possible to do this (without too much coding)?

    Thanks!!

Viewing 5 replies - 1 through 5 (of 5 total)

  • Anointed
    Participant

    @anointed

    Add the following code to your theme functions.php file

    function wptumble_feed_request($vars) {
    if (isset($vars['feed']) && !isset($vars['post_type']))
    $vars['post_type'] = array('post', 'topic', 'reply');
    return $vars;
    }
    add_filter('request', 'wptumble_feed_request');

    Thanks for posting that. I will give it a try as soon as possible. Thanks again.


    Andreas
    Member

    @thesaurus

    Thanks, this is working. Just before I added both of feed address into header.php

    @anointed Thanks dude :)


    injua
    Participant

    @injua

    This code is a little unsafe. It doesn’t filter out posts in hidden or private forums. Is this possible?

Viewing 5 replies - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.
Skip to toolbar