Changeset 36903
- Timestamp:
- 03/09/2016 07:32:33 PM (9 years ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/js/customize-preview.js
r36851 r36903 257 257 258 258 $( '.custom-logo-link' ).show(); 259 $( 'body' ).addClass( 'wp-custom-logo' ); 259 260 } ); 260 261 … … 263 264 if ( ! newValue ) { 264 265 $( '.custom-logo-link' ).hide(); 266 $( 'body' ).removeClass( 'wp-custom-logo' ); 265 267 } 266 268 } ); -
trunk/src/wp-includes/post-template.php
r36837 r36903 706 706 if ( get_background_color() !== get_theme_support( 'custom-background', 'default-color' ) || get_background_image() ) 707 707 $classes[] = 'custom-background'; 708 709 if ( has_custom_logo() ) { 710 $classes[] = 'wp-custom-logo'; 711 } 708 712 709 713 $page = $wp_query->get( 'page' );
Note: See TracChangeset
for help on using the changeset viewer.