Merge branch 'master' of github.com:Automattic/_s

This commit is contained in:
Ian Stewart 2012-02-29 09:39:15 -06:00
commit fa078b1981
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ add_filter( 'wp_page_menu_args', '_s_page_menu_args' );
* @since _s 1.0
*/
function _s_body_classes( $classes ) {
// Adds a class of single-author to blogs with only 1 published author
// Adds a class of group-blog to blogs with more than 1 published author
if ( is_multi_author() ) {
$classes[] = 'group-blog';
}