Forums
-
- Forum
- Posts
-
- Installation
- 28,499
- Troubleshooting
- 62,656
- Themes
- 10,431
- Plugins
- 15,360
- Requests & Feedback
- 14,972
- Showcase
- 3,256
-
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' );