From af4f52bf40ce236eaf44ab7a859ee29084b31f85 Mon Sep 17 00:00:00 2001 From: "Dominik Schilling (ocean90)" Date: Wed, 8 Apr 2015 17:28:23 +0000 Subject: [PATCH] Don't print the `custom-background` class in `body_class()` when a default color is in use. `.custom-background` should only be added if a background color or an image divert from their defaults. This behavior exists already in `_custom_background_cb()`. props slobodanmanic, nitkr, valendesigns, obenland. see [21054], [21001]. fixes #28687. git-svn-id: https://develop.svn.wordpress.org/trunk@32081 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/post-template.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/post-template.php b/src/wp-includes/post-template.php index d2fecb52a3..2a6569f298 100644 --- a/src/wp-includes/post-template.php +++ b/src/wp-includes/post-template.php @@ -668,7 +668,7 @@ function get_body_class( $class = '' ) { $classes[] = 'no-customize-support'; } - if ( get_theme_mod( 'background_color' ) || get_background_image() ) + if ( get_background_color() !== get_theme_support( 'custom-background', 'default-color' ) || get_background_image() ) $classes[] = 'custom-background'; $page = $wp_query->get( 'page' );