Make WordPress Core

Ticket #33611: 33611.patch

File 33611.patch, 1.2 KB (added by Cheffheid, 10 years ago)

Heading update. To be combined with the CSS patch on #33559 to ensure the look remains the same.

  • wp-admin/options-permalink.php

     
    197197        4 => $prefix . '/%postname%/',
    198198);
    199199?>
    200 <h3 class="title"><?php _e('Common Settings'); ?></h3>
     200<h2 class="title"><?php _e('Common Settings'); ?></h2>
    201201<table class="form-table permalink-structure">
    202202        <tr>
    203203                <th><label><input name="selection" type="radio" value="" <?php checked('', $permalink_structure); ?> /> <?php _e('Default'); ?></label></th>
     
    232232        </tr>
    233233</table>
    234234
    235 <h3 class="title"><?php _e('Optional'); ?></h3>
     235<h2 class="title"><?php _e('Optional'); ?></h2>
    236236<p><?php
    237237/* translators: %s is a placeholder that must come at the start of the URL. */
    238238printf( __('If you like, you may enter custom structures for your category and tag <abbr title="Universal Resource Locator">URL</abbr>s here. For example, using <code>topics</code> as your category base would make your category links like <code>%s/topics/uncategorized/</code>. If you leave these blank the defaults will be used.'), get_option('home') . $blog_prefix . $prefix ); ?></p>