Make WordPress Core

Changeset 24002


Ignore:
Timestamp:
04/16/2013 08:19:29 PM (12 years ago)
Author:
markjaquith
Message:

Consistently apply class="title" to our options page h3 tags.

props norcross. fixes #24080.

Location:
trunk/wp-admin
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/options-discussion.php

    r22010 r24002  
    165165</table>
    166166
    167 <h3><?php _e('Avatars'); ?></h3>
     167<h3 class="title"><?php _e('Avatars'); ?></h3>
    168168
    169169<p><?php _e('An avatar is an image that follows you from weblog to weblog appearing beside your name when you comment on avatar enabled sites. Here you can enable the display of avatars for people who comment on your site.'); ?></p>
  • trunk/wp-admin/options-media.php

    r23134 r24002  
    4747<?php settings_fields('media'); ?>
    4848
    49 <h3><?php _e('Image sizes') ?></h3>
     49<h3 class="title"><?php _e('Image sizes') ?></h3>
    5050<p><?php _e('The sizes listed below determine the maximum dimensions in pixels to use when inserting an image into the body of a post.'); ?></p>
    5151
     
    8787
    8888<?php if ( isset( $GLOBALS['wp_settings']['media']['embeds'] ) ) : ?>
    89 <h3><?php _e('Embeds') ?></h3>
     89<h3 class="title"><?php _e('Embeds') ?></h3>
    9090<table class="form-table">
    9191<?php do_settings_fields( 'media', 'embeds' ); ?>
     
    9494
    9595<?php if ( !is_multisite() ) : ?>
    96 <h3><?php _e('Uploading Files'); ?></h3>
     96<h3 class="title"><?php _e('Uploading Files'); ?></h3>
    9797<table class="form-table">
    9898<?php
  • trunk/wp-admin/options-permalink.php

    r23305 r24002  
    189189);
    190190?>
    191 <h3><?php _e('Common Settings'); ?></h3>
     191<h3 class="title"><?php _e('Common Settings'); ?></h3>
    192192<table class="form-table permalink-structure">
    193193    <tr>
     
    224224</table>
    225225
    226 <h3><?php _e('Optional'); ?></h3>
     226<h3 class="title"><?php _e('Optional'); ?></h3>
    227227<?php
    228228$suffix = '';
  • trunk/wp-admin/options-writing.php

    r23314 r24002  
    126126
    127127<?php if ( apply_filters( 'enable_post_by_email_configuration', true ) ) { ?>
    128 <h3><?php _e('Post via e-mail') ?></h3>
     128<h3 class="title"><?php _e('Post via e-mail') ?></h3>
    129129<p><?php printf(__('To post to WordPress by e-mail you must set up a secret e-mail account with POP3 access. Any mail received at this address will be posted, so it&#8217;s a good idea to keep this address very secret. Here are three random strings you could use: <kbd>%s</kbd>, <kbd>%s</kbd>, <kbd>%s</kbd>.'), wp_generate_password(8, false), wp_generate_password(8, false), wp_generate_password(8, false)) ?></p>
    130130
     
    160160
    161161<?php if ( apply_filters( 'enable_update_services_configuration', true ) ) { ?>
    162 <h3><?php _e('Update Services') ?></h3>
     162<h3 class="title"><?php _e('Update Services') ?></h3>
    163163
    164164<?php if ( 1 == get_option('blog_public') ) : ?>
Note: See TracChangeset for help on using the changeset viewer.