Ticket #25379: theme.diff
File theme.diff, 660 bytes (added by , 12 years ago) |
---|
-
wp-includes/theme.php
1188 1188 1189 1189 $style .= $image . $repeat . $position . $attachment; 1190 1190 } 1191 1192 $css_selector = apply_filters( 'custom_background_css_selector', 'body.custom-background' ); 1193 1191 1194 ?> 1192 1195 <style type="text/css" id="custom-background-css"> 1193 body.custom-background{ <?php echo trim( $style ); ?> }1196 <?php echo trim( $css_selector ); ?> { <?php echo trim( $style ); ?> } 1194 1197 </style> 1195 1198 <?php 1196 1199 } … … 1750 1753 }()); 1751 1754 </script> 1752 1755 <?php 1753 } 1754 No newline at end of file 1756 }