- Timestamp:
- 08/17/2018 01:50:26 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentyfifteen/inc/custom-header.php
r42343 r43571 33 33 */ 34 34 add_theme_support( 35 'custom-header', apply_filters( 36 'twentyfifteen_custom_header_args', array( 35 'custom-header', 36 apply_filters( 37 'twentyfifteen_custom_header_args', 38 array( 37 39 'default-text-color' => $default_text_color, 38 40 'width' => 954, … … 98 100 // Short header for when there is no Custom Header and Header Text is hidden. 99 101 if ( empty( $header_image ) && ! display_header_text() ) : 100 ?>102 ?> 101 103 .site-header { 102 104 padding-top: 14px; … … 135 137 } 136 138 } 137 <?php139 <?php 138 140 endif; 139 141 140 142 // Has a Custom Header been added? 141 143 if ( ! empty( $header_image ) ) : 142 ?>144 ?> 143 145 .site-header { 144 146 … … 177 179 } 178 180 } 179 <?php181 <?php 180 182 endif; 181 183 182 184 // Has the text been hidden? 183 185 if ( ! display_header_text() ) : 184 ?>186 ?> 185 187 .site-title, 186 188 .site-description { … … 190 192 <?php endif; ?> 191 193 </style> 192 <?php194 <?php 193 195 } 194 196 endif; // twentyfifteen_header_style
Note: See TracChangeset
for help on using the changeset viewer.