204 | | if ( get_background_image() ) { |
205 | | $background_image_thumb = esc_url( set_url_scheme( get_theme_mod( 'background_image_thumb', str_replace( '%', '%%', get_background_image() ) ) ) ); |
206 | | // background-image URL must be single quote, see below |
207 | | $background_styles .= ' background-image: url(\'' . $background_image_thumb . '\');' |
208 | | . ' background-repeat: ' . get_theme_mod( 'background_repeat', get_theme_support( 'custom-background', 'default-repeat' ) ) . ';' |
209 | | . ' background-position: top ' . get_theme_mod( 'background_position_x', get_theme_support( 'custom-background', 'default-position-x' ) ); |
210 | | } |
211 | | ?> |
212 | | <div id="custom-background-image" style="<?php echo $background_styles; ?>"><?php // must be double quote, see above ?> |
213 | | <?php if ( get_background_image() ) { ?> |
214 | | <img class="custom-background-image" src="<?php echo $background_image_thumb; ?>" style="visibility:hidden;" alt="" /><br /> |
215 | | <img class="custom-background-image" src="<?php echo $background_image_thumb; ?>" style="visibility:hidden;" alt="" /> |
216 | | <?php } ?> |
217 | | </div> |
218 | | <?php } ?> |
| 203 | if ( get_background_image() ) { |
| 204 | $background_image_thumb = esc_url( set_url_scheme( get_theme_mod( 'background_image_thumb', str_replace( '%', '%%', get_background_image() ) ) ) ); |
| 205 | // background-image URL must be single quote, see below |
| 206 | $background_styles .= ' background-image: url(\'' . $background_image_thumb . '\');' |
| 207 | . ' background-repeat: ' . get_theme_mod( 'background_repeat', get_theme_support( 'custom-background', 'default-repeat' ) ) . ';' |
| 208 | . ' background-position: top ' . get_theme_mod( 'background_position_x', get_theme_support( 'custom-background', 'default-position-x' ) ); |
| 209 | } |
| 210 | ?> |
| 211 | <div id="custom-background-image" style="<?php echo $background_styles; ?>"><?php // must be double quote, see above ?> |
| 212 | <?php if ( get_background_image() ) { ?> |
| 213 | <img class="custom-background-image" src="<?php echo $background_image_thumb; ?>" style="visibility:hidden;" alt="" /><br /> |
| 214 | <img class="custom-background-image" src="<?php echo $background_image_thumb; ?>" style="visibility:hidden;" alt="" /> |
| 215 | <?php } ?> |
| 216 | </div> |
| 217 | <?php } ?> |