Make WordPress Core

Ticket #20448: 20448.5.diff

File 20448.5.diff, 2.6 KB (added by nacin, 13 years ago)
  • wp-includes/post-template.php

     
    501501        if ( is_admin_bar_showing() )
    502502                $classes[] = 'admin-bar';
    503503
    504         if ( get_background_image() || get_background_color() )
     504        if ( get_theme_mod( 'background_image' ) || get_theme_mod( 'background_color' ) )
    505505                $classes[] = 'custom-background';
    506506
    507507        $page = $wp_query->get( 'page' );
  • wp-includes/theme.php

     
    11021102 * @access protected
    11031103 */
    11041104function _custom_background_cb() {
    1105         $background = get_background_image();
    1106         $color = get_background_color();
     1105        $background = get_theme_mod( 'background_image' );
     1106        $color = get_theme_mod( 'background_color' );
     1107
    11071108        if ( ! $background && ! $color )
    11081109                return;
    11091110
  • wp-content/themes/twentyten/functions.php

     
    9494        ) );
    9595
    9696        // This theme allows users to set a custom background.
    97         add_theme_support( 'custom-background' );
     97        add_theme_support( 'custom-background', array(
     98                // Let WordPress know what our default background color is.
     99                'default-color' => 'f1f1f1',
     100        );
    98101
    99102        // The custom header business starts here.
    100103
  • wp-content/themes/twentyeleven/functions.php

     
    9797        // Add support for a variety of post formats
    9898        add_theme_support( 'post-formats', array( 'aside', 'link', 'gallery', 'status', 'quote', 'image' ) );
    9999
     100        $theme_options = twentyeleven_get_theme_options();
     101        if ( 'dark' == $theme_options['color_scheme'] )
     102                $default_background_color = '1d1d1d';
     103        else
     104                $default_background_color = 'f1f1f1';
     105
    100106        // Add support for custom backgrounds.
    101         add_theme_support( 'custom-background' );
     107        add_theme_support( 'custom-background', array(
     108                // Let WordPress know what our default background color is.
     109                // This is dependent on our current color scheme.
     110                'default-color' => $default_background_color,
     111        ) );
    102112
    103113        // This theme uses Featured Images (also known as post thumbnails) for per-post/per-page Custom Header images
    104114        add_theme_support( 'post-thumbnails' );