Twenty Thirteen: remove unused `custom-font` body class value. See #24445.

git-svn-id: https://develop.svn.wordpress.org/trunk@24390 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Lance Willett 2013-05-31 05:23:48 +00:00
parent bbb57bbaf8
commit 0d0434796a
1 changed files with 3 additions and 9 deletions

View File

@ -461,10 +461,9 @@ add_filter( 'shortcode_atts_gallery', 'twentythirteen_gallery_atts' );
* Extends the default WordPress body classes.
*
* Adds body classes to denote:
* 1. Custom fonts enabled.
* 2. Single or multiple authors.
* 3. Active widgets in the sidebar to change the layout and spacing.
* 4. When avatars are disabled in discussion settings.
* 1. Single or multiple authors.
* 2. Active widgets in the sidebar to change the layout and spacing.
* 3. When avatars are disabled in discussion settings.
*
* @since Twenty Thirteen 1.0
*
@ -472,11 +471,6 @@ add_filter( 'shortcode_atts_gallery', 'twentythirteen_gallery_atts' );
* @return array The filtered body class list.
*/
function twentythirteen_body_class( $classes ) {
// Enable custom font class only if the font CSS is queued to load.
if ( wp_style_is( 'twentythirteen-fonts', 'enqueued' ) )
$classes[] = 'custom-font';
if ( ! is_multi_author() )
$classes[] = 'single-author';