bbPress

Simple, Fast, Elegant

bbPress support forums » Troubleshooting

view.php template doesn't have an rss feed?

(2 posts)
  • Started 1 year ago by _ck_
  • Latest reply from _ck_
  • This topic is not resolved

Tags:

  1. This is probably one for TRAC just but I just wanted to check that I am not missing something...

    You can't get an rss feed for a view page, can you?

    This should be fairly easy to implement since just an array of topics is dumped to the page, just route it somehow to the rss.php upon the proper url ie. /forums/rss/view/no-replies

    Posted 1 year ago #
  2. Views don't have proper titles either apparently, here's plugin to fix that.

    function bb_get_view_title($title) {
    if (is_view()) {$title =  get_view_name(). ' « ' . bb_get_option( 'name' ); }
    return $title;
    }
    add_filter( 'bb_get_title', 'bb_get_view_title' );
    Posted 1 year ago #

RSS feed for this topic

Reply

You must log in to post.

Code is Poetry.