Forums
-
- Forum
- Posts
-
- Installation
- 28,417
- Troubleshooting
- 62,426
- Themes
- 10,420
- Plugins
- 15,331
- Requests & Feedback
- 14,958
- Showcase
- 3,255
-
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' );