Ticket #10337: 10337.options.patch

File 10337.options.patch, 2.2 KB (added by Viper007Bond, 3 years ago)

Tweak the settings page a bit

  • wp-admin/options-media.php

     
    7070<table class="form-table"> 
    7171 
    7272<tr valign="top"> 
    73 <th scope="row"><?php _e('oEmbed'); ?></th> 
    74 <td><fieldset><legend class="screen-reader-text"><span><?php printf( __('Use <a href="%s">oEmbed</a> to assist in rich content embedding'), 'http://codex.wordpress.org/oEmbed' ); ?></span></legend> 
    75 <label for="embed_useoembed"><input name="embed_useoembed" type="checkbox" id="embed_useoembed" value="1" <?php checked( '1', get_option('embed_useoembed') ); ?>/> <?php printf( __('Use <a href="%s">oEmbed</a> to assist in rich content embedding'), 'http://codex.wordpress.org/oEmbed' ); ?></label> 
     73<th scope="row"><?php _e('Auto-embeds'); ?></th> 
     74<td><fieldset><legend class="screen-reader-text"><span><?php _e('Attempt to automatically embed all plain text URLs'); ?></span></legend> 
     75<label for="embed_autourls"><input name="embed_autourls" type="checkbox" id="embed_autourls" value="1" <?php checked( '1', get_option('embed_autourls') ); ?>/> <?php _e('Attempt to automatically embed all plain text URLs'); ?></label> 
    7676</fieldset></td> 
    7777</tr> 
    7878 
    7979<tr valign="top"> 
    80 <th scope="row"><?php _e('Auto-embeds'); ?></th> 
    81 <td><fieldset><legend class="screen-reader-text"><span><?php _e('Attempt to automatically embed all plain text URLs'); ?></span></legend> 
    82 <label for="embed_autourls"><input name="embed_autourls" type="checkbox" id="embed_autourls" value="1" <?php checked( '1', get_option('embed_autourls') ); ?>/> <?php _e('Attempt to automatically embed all plain text URLs'); ?></label> 
     80<th scope="row"><?php _e('oEmbed'); ?></th> 
     81<td><fieldset><legend class="screen-reader-text"><span><?php printf( __('Use <a href="%s">oEmbed</a> to assist in rich content embedding'), 'http://codex.wordpress.org/oEmbed' ); ?></span></legend> 
     82<label for="embed_useoembed"><input name="embed_useoembed" type="checkbox" id="embed_useoembed" value="1" <?php checked( '1', get_option('embed_useoembed') ); ?>/> <?php printf( __('Use <a href="%s">oEmbed</a> to allow embedding content from additional websites'), 'http://codex.wordpress.org/oEmbed' ); ?></label> 
    8383</fieldset></td> 
    8484</tr> 
    8585