- Timestamp:
- 09/03/2019 12:39:13 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/customize/class-wp-customize-header-image-control.php
r44600 r45932 204 204 } elseif ( $width && $height ) { 205 205 printf( 206 /* translators: %s: header size in pixels*/206 /* translators: %s: Header size in pixels. */ 207 207 __( 'Click “Add new image” to upload an image file from your computer. Your theme works best with an image with a header size of %s pixels — you’ll be able to crop your image once you upload it for a perfect fit.' ), 208 208 sprintf( '<strong>%s × %s</strong>', $width, $height ) … … 210 210 } elseif ( $width ) { 211 211 printf( 212 /* translators: %s: header width in pixels*/212 /* translators: %s: Header width in pixels. */ 213 213 __( 'Click “Add new image” to upload an image file from your computer. Your theme works best with an image with a header width of %s pixels — you’ll be able to crop your image once you upload it for a perfect fit.' ), 214 214 sprintf( '<strong>%s</strong>', $width ) … … 216 216 } else { 217 217 printf( 218 /* translators: %s: header height in pixels*/218 /* translators: %s: Header height in pixels. */ 219 219 __( 'Click “Add new image” to upload an image file from your computer. Your theme works best with an image with a header height of %s pixels — you’ll be able to crop your image once you upload it for a perfect fit.' ), 220 220 sprintf( '<strong>%s</strong>', $height )
Note: See TracChangeset
for help on using the changeset viewer.