/**
 * Output the row class of the current blog in the loop.
 *
 * @since BuddyPress (1.7.0)
 *
 * @param array $classes Array of custom classes
 */
function bp_blog_class($classes = array())
{
    echo bp_get_blog_class($classes);
}
/**
 * Output the row class of the current blog in the loop.
 *
 * @since BuddyPress (1.7.0)
 */
function bp_blog_class()
{
    echo bp_get_blog_class();
}