Info
- 2 posts
- 1 voice
- Started 4 years ago by _ck_
- Latest reply from _ck_
- This topic is not resolved
view.php template doesn't have an rss feed?
-
- Posted 4 years ago #
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 4 years ago #
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' ); -
You must log in to post.