Bump H3 headings to H2 on Tools screen for better accessibility.

props Cheffheid.
fixes #33607.
Built from https://develop.svn.wordpress.org/trunk@33819


git-svn-id: http://core.svn.wordpress.org/trunk@33787 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2015-08-31 03:32:21 +00:00
parent 48c82ef14d
commit 82a8cec3b3
2 changed files with 4 additions and 4 deletions

View File

@ -37,7 +37,7 @@ require_once( ABSPATH . 'wp-admin/admin-header.php' );
<?php if ( current_user_can('edit_posts') ) : ?>
<div class="card pressthis">
<h3><?php _e('Press This') ?></h3>
<h2><?php _e('Press This') ?></h2>
<p><?php _e( 'Press This is a little tool that lets you grab bits of the web and create new posts with ease.' );?></p>
<p><?php _e( 'Use Press This to clip text, images and videos from any web page. Then edit and add more straight from Press This before you save or publish it in a post on your site.' ); ?></p>
@ -100,8 +100,8 @@ $cats = get_taxonomy('category');
$tags = get_taxonomy('post_tag');
if ( current_user_can($cats->cap->manage_terms) || current_user_can($tags->cap->manage_terms) ) : ?>
<div class="card">
<h3 class="title"><?php _e( 'Categories and Tags Converter' ) ?></h3>
<p><?php printf( __('If you want to convert your categories to tags (or vice versa), use the <a href="%s">Categories and Tags Converter</a> available from the Import screen.'), 'import.php' ); ?></p>
<h2 class="title"><?php _e( 'Categories and Tags Converter' ) ?></h2>
<p><?php printf( __('If you want to convert your categories to tags (or vice versa), use the <a href="%s">Categories and Tags Converter</a> available from the Import screen.'), 'import.php' ); ?></p>
</div>
<?php
endif;

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.4-alpha-33818';
$wp_version = '4.4-alpha-33819';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.