Changeset 42865 for branches/4.9/src/wp-admin/options-media.php
- Timestamp:
- 03/20/2018 10:48:42 PM (3 years ago)
- Location:
- branches/4.9
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.9
-
branches/4.9/src/wp-admin/options-media.php
r41836 r42865 52 52 <tr> 53 53 <th scope="row"><?php _e('Thumbnail size') ?></th> 54 <td> 55 <label for="thumbnail_size_w"><?php _e('Width'); ?></label> 56 <input name="thumbnail_size_w" type="number" step="1" min="0" id="thumbnail_size_w" value="<?php form_option('thumbnail_size_w'); ?>" class="small-text" /> 57 <label for="thumbnail_size_h"><?php _e('Height'); ?></label> 58 <input name="thumbnail_size_h" type="number" step="1" min="0" id="thumbnail_size_h" value="<?php form_option('thumbnail_size_h'); ?>" class="small-text" /> 59 <p><input name="thumbnail_crop" type="checkbox" id="thumbnail_crop" value="1" <?php checked('1', get_option('thumbnail_crop')); ?>/> 60 <label for="thumbnail_crop"><?php _e('Crop thumbnail to exact dimensions (normally thumbnails are proportional)'); ?></label></p> 54 <td><fieldset><legend class="screen-reader-text"><span><?php _e( 'Thumbnail size' ); ?></span></legend> 55 <label for="thumbnail_size_w"><?php _e( 'Width' ); ?></label> 56 <input name="thumbnail_size_w" type="number" step="1" min="0" id="thumbnail_size_w" value="<?php form_option( 'thumbnail_size_w' ); ?>" class="small-text" /> 57 <br /> 58 <label for="thumbnail_size_h"><?php _e( 'Height' ); ?></label> 59 <input name="thumbnail_size_h" type="number" step="1" min="0" id="thumbnail_size_h" value="<?php form_option( 'thumbnail_size_h' ); ?>" class="small-text" /> 60 </fieldset> 61 <input name="thumbnail_crop" type="checkbox" id="thumbnail_crop" value="1" <?php checked( '1', get_option( 'thumbnail_crop' ) ); ?>/> 62 <label for="thumbnail_crop"><?php _e( 'Crop thumbnail to exact dimensions (normally thumbnails are proportional)' ); ?></label> 61 63 </td> 62 64 </tr>
Note: See TracChangeset
for help on using the changeset viewer.