Ticket #2598: 2598-4.patch
File 2598-4.patch, 872 bytes (added by , 14 years ago) |
---|
-
bp-core/bp-core-templatetags.php
896 896 } else if ( bp_is_blog_page() ) { 897 897 if ( is_single() ) { 898 898 $title = __( 'Blog | ' . $post->post_title, 'buddypress' ); 899 } else if ( is_category() ) { 900 $title = __( 'Blog | Categories | ' . ucwords( $wp_query->query_vars['category_name'] ), 'buddypress' ); 899 } else if ( is_category() ) { 900 $category = get_category_by_slug( $wp_query->query_vars['category_name'] ); 901 $title = __( 'Blog | Categories | ' . $category->name, 'buddypress' ); 901 902 } else if ( is_tag() ) { 902 903 $title = __( 'Blog | Tags | ' . ucwords( $wp_query->query_vars['tag'] ), 'buddypress' ); 903 904 } else if ( is_page() ){