Changeset 23939
- Timestamp:
- 04/09/2013 05:08:25 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/post-formats.php
r23931 r23939 10 10 11 11 <div class="field wp-format-quote"> 12 <label for=" _wp_format_quote"><?php _e( 'Quote' ); ?></label>13 <textarea id=" _wp_format_quote" name="_wp_format_quote" class="widefat"><?php echo esc_textarea( $format_meta['quote'] ); ?></textarea>12 <label for="wp_format_quote"><?php _e( 'Quote' ); ?></label> 13 <textarea id="wp_format_quote" name="_wp_format_quote" class="widefat"><?php echo esc_textarea( $format_meta['quote'] ); ?></textarea> 14 14 </div> 15 15 16 16 <div class="field wp-format-quote"> 17 <label for=" _wp_format_quote_source"><?php _e( 'Quote source' ); ?></label>18 <input type="text" id=" _wp_format_quote_source" name="_wp_format_quote_source" value="<?php echo esc_attr( $format_meta['quote_source'] ); ?>" class="widefat" />17 <label for="wp_format_quote_source"><?php _e( 'Quote source' ); ?></label> 18 <input type="text" id="wp_format_quote_source" name="_wp_format_quote_source" value="<?php echo esc_attr( $format_meta['quote_source'] ); ?>" class="widefat" /> 19 19 </div> 20 20 … … 43 43 44 44 <div class="field wp-format-link wp-format-quote wp-format-image"> 45 <label for=" _wp_format_url"><?php _e( 'Link URL' ); ?></label>46 <input type="text" id=" _wp_format_url" name="_wp_format_url" value="<?php echo esc_url( $format_meta['url'] ); ?>" class="widefat" />45 <label for="wp_format_url"><?php _e( 'Link URL' ); ?></label> 46 <input type="text" id="wp_format_url" name="_wp_format_url" value="<?php echo esc_url( $format_meta['url'] ); ?>" class="widefat" /> 47 47 </div> 48 48 … … 70 70 </div> 71 71 <?php endif; ?> 72 <label for=" _wp_format_video"><?php _e( 'Video embed code or URL' ); ?></label>72 <label for="wp_format_video"><?php _e( 'Video embed code or URL' ); ?></label> 73 73 <textarea id="wp_format_video" type="text" name="_wp_format_video" class="widefat"><?php esc_html_e( $format_meta['video'] ); ?></textarea> 74 74 <div data-format="video" class="wp-format-media-holder hide-if-no-js<?php if ( ! $image ) echo ' empty'; ?>"> … … 104 104 </div> 105 105 <?php endif; ?> 106 <label for=" _wp_format_audio"><?php _e( 'Audio embed code or URL' ); ?></label>106 <label for="wp_format_audio"><?php _e( 'Audio embed code or URL' ); ?></label> 107 107 <textarea id="wp_format_audio" name="_wp_format_audio" class="widefat"><?php esc_html_e( $format_meta['audio'] ); 108 108 ?></textarea>
Note: See TracChangeset
for help on using the changeset viewer.