Changeset 47219 for trunk/src/wp-content/themes/twentyeleven/functions.php
- Timestamp:
- 02/09/2020 04:52:28 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentyeleven/functions.php
r47198 r47219 320 320 321 321 // If no custom options for text are set, let's bail. 322 if ( $text_color == HEADER_TEXTCOLOR) {322 if ( HEADER_TEXTCOLOR == $text_color ) { 323 323 return; 324 324 } … … 417 417 $image = get_header_image(); 418 418 $style = 'display: none;'; 419 if ( $color && $color != 'blank') {419 if ( $color && 'blank' !== $color ) { 420 420 $style = 'color: #' . $color . ';'; 421 421 }
Note: See TracChangeset
for help on using the changeset viewer.