Changeset 20901 for trunk/wp-admin/custom-background.php
- Timestamp:
- 05/25/2012 05:58:57 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/custom-background.php
r20885 r20901 208 208 if ( get_background_image() ) { 209 209 // background-image URL must be single quote, see below 210 $background_styles .= ' background-image: url(\'' . set_url_scheme( get_theme_mod( 'background_image_thumb', '') ) . '\');'210 $background_styles .= ' background-image: url(\'' . set_url_scheme( get_theme_mod( 'background_image_thumb', get_background_image() ) ) . '\');' 211 211 . ' background-repeat: ' . get_theme_mod('background_repeat', 'repeat') . ';' 212 212 . ' background-position: top ' . get_theme_mod('background_position_x', 'left'); … … 215 215 <div id="custom-background-image" style="<?php echo $background_styles; ?>"><?php // must be double quote, see above ?> 216 216 <?php if ( get_background_image() ) { ?> 217 <img class="custom-background-image" src="<?php echo set_url_scheme( get_theme_mod( 'background_image_thumb', '') ); ?>" style="visibility:hidden;" alt="" /><br />218 <img class="custom-background-image" src="<?php echo set_url_scheme( get_theme_mod( 'background_image_thumb', '') ); ?>" style="visibility:hidden;" alt="" />217 <img class="custom-background-image" src="<?php echo set_url_scheme( get_theme_mod( 'background_image_thumb', get_background_image() ) ); ?>" style="visibility:hidden;" alt="" /><br /> 218 <img class="custom-background-image" src="<?php echo set_url_scheme( get_theme_mod( 'background_image_thumb', get_background_image() ) ); ?>" style="visibility:hidden;" alt="" /> 219 219 <?php } ?> 220 220 </div> … … 323 323 <th scope="row"><?php _e( 'Background Color' ); ?></th> 324 324 <td><fieldset><legend class="screen-reader-text"><span><?php _e( 'Background Color' ); ?></span></legend> 325 <?php $show_clear = get_ background_color() ? '' : ' style="display:none"'; ?>325 <?php $show_clear = get_theme_mod('background_color') ? '' : ' style="display:none"'; ?> 326 326 <input type="text" name="background-color" id="background-color" value="#<?php echo esc_attr(get_background_color()) ?>" /> 327 <a class="hide-if-no-js" href="#" id="pickcolor"><?php _e('Select a Color'); ?></a> <span<?php echo $show_clear; ?> class="hide-if-no-js" id="clearcolor"> (<a href="#"><?php _e( 'Clear' ); ?></a>)</span> 327 <a class="hide-if-no-js" href="#" id="pickcolor"><?php _e('Select a Color'); ?></a> <span<?php echo $show_clear; ?> class="hide-if-no-js" id="clearcolor"> (<a href="#"><?php current_theme_supports( 'custom-background', 'default-color' ) ? _e( 'Default' ) : _e( 'Clear' ); ?></a>)</span> 328 <input type="hidden" id="defaultcolor" value="<?php if ( current_theme_supports( 'custom-background', 'default-color' ) ) echo '#' . esc_attr( get_theme_support( 'custom-background', 'default-color' ) ); ?>" /> 328 329 <div id="colorPickerDiv" style="z-index: 100; background:#eee; border:1px solid #ccc; position:absolute; display:none;"></div> 329 330 </fieldset></td>
Note: See TracChangeset
for help on using the changeset viewer.