PressThis: add a wrapped with role = application to the categories section.

Props: afercia. See #31443.

git-svn-id: https://develop.svn.wordpress.org/trunk@31775 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Ozz 2015-03-13 23:40:53 +00:00
parent 71aa99360e
commit a6b11c0411
1 changed files with 5 additions and 3 deletions

View File

@ -793,9 +793,11 @@ class WP_Press_This {
<span class="dashicons dashicons-search"></span><span class="screen-reader-text"><?php _e( 'Search categories' ); ?></span>
</label>
</div>
<ul class="categories-select" aria-label="<?php esc_attr_e( 'Categories' ); ?>">
<?php wp_terms_checklist( $post->ID, array( 'taxonomy' => 'category', 'list_only' => true ) ); ?>
</ul>
<div role="application" aria-label="<?php esc_attr_e( 'Categories' ); ?>">
<ul class="categories-select">
<?php wp_terms_checklist( $post->ID, array( 'taxonomy' => 'category', 'list_only' => true ) ); ?>
</ul>
</div>
<?php
}