Changeset 20830 for trunk/wp-admin/custom-background.php
- Timestamp:
- 05/18/2012 08:22:57 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/custom-background.php
r20757 r20830 208 208 if ( get_background_image() ) { 209 209 // background-image URL must be single quote, see below 210 $background_styles .= ' background-image: url(\'' . get_theme_mod('background_image_thumb', '') . '\');'210 $background_styles .= ' background-image: url(\'' . set_url_scheme( get_theme_mod('background_image_thumb', '') ) . '\');' 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 get_theme_mod('background_image_thumb', ''); ?>" style="visibility:hidden;" alt="" /><br />218 <img class="custom-background-image" src="<?php echo 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', '') ); ?>" 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="" /> 219 219 <?php } ?> 220 220 </div>
Note: See TracChangeset
for help on using the changeset viewer.