Make WordPress Core


Ignore:
Timestamp:
06/21/2023 09:45:52 PM (22 months ago)
Author:
joedolson
Message:

Administration: Set accessible state for list table headers.

Implement aria-sort and change icon states to indicate current sort for list tables. Allow screen reader users to get context about the current sort and allow sighted users to know how the table is currently sorted.

Props afercia, rianrietveld, joedolson, alexstine, johnjamesjacoby.
Fixes #32170.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/class-wp-users-list-table.php

    r55954 r55971  
    394394    protected function get_sortable_columns() {
    395395        $columns = array(
    396             'username' => 'login',
    397             'email'    => 'email',
     396            'username' => array( 'login', false, __( 'Username' ), __( 'Table ordered by Username.' ), 'asc' ),
     397            'email'    => array( 'email', false, __( 'E-mail' ), __( 'Table ordered by E-mail.' ) ),
    398398        );
    399399
Note: See TracChangeset for help on using the changeset viewer.