Re: Categorize Blogs + Categorized blog overviews
using blog metas you could do that
you should add a selectbox (using bp hooks) in the new blog creation form and add available categories
and save that using blog metas (blog_option) update_blog_option( 1, ‘blog_type’, ‘Personal Blog’ )
and after apply a filter to the blog name, like
function my_filter_name( $old_name ) {
global $current_blog;
return get_blog_option( $current_blog->ID, 'blog_type' ) . '' . $old_name;
}
add_filter( 'look for this hook name', 'my_filter_name', 1 );
Nicola
BPDEV