Make WordPress Core


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

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

props norcross. fixes #24080.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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.