Make WordPress Core


Ignore:
Timestamp:
11/25/2019 10:21:25 AM (5 years ago)
Author:
SergeyBiryukov
Message:

Accessibility: Add an aria-current attribute to the Media Library switch links.

The aria-current attribute is a simple, effective, way to help assistive technology users orientate themselves within a set of items.

Props mayanksonawat, afercia.
Merges [46746] to the 5.3 branch.
Fixes #48271.

Location:
branches/5.3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/5.3

  • branches/5.3/src/wp-admin/includes/class-wp-list-table.php

    r46341 r46777  
    632632        <?php
    633633        foreach ( $this->modes as $mode => $title ) {
    634             $classes = array( 'view-' . $mode );
     634            $classes      = array( 'view-' . $mode );
     635            $aria_current = '';
     636
    635637            if ( $current_mode === $mode ) {
    636                 $classes[] = 'current';
     638                $classes[]    = 'current';
     639                $aria_current = ' aria-current="page"';
    637640            }
    638641            printf(
    639                 "<a href='%s' class='%s' id='view-switch-$mode'><span class='screen-reader-text'>%s</span></a>\n",
     642                "<a href='%s' class='%s' id='view-switch-$mode'$aria_current><span class='screen-reader-text'>%s</span></a>\n",
    640643                esc_url( add_query_arg( 'mode', $mode ) ),
    641644                implode( ' ', $classes ),
Note: See TracChangeset for help on using the changeset viewer.