Returns a clean label for the primary (File) column’s row header aria-label.
Description
Provides screen readers with just the attachment title as the row header name, preventing them from computing the name from the full cell content.
Parameters
Source
protected function get_primary_column_aria_label( $post ) {
// The title may contain HTML. The printed aria-label uses esc_attr() later.
$attachment_title = html_entity_decode( _draft_or_post_title( $post ), ENT_QUOTES, get_bloginfo( 'charset' ) );
$attachment_title = wp_strip_all_tags( $attachment_title );
return $attachment_title;
}
Changelog
| Version | Description |
|---|---|
| 7.1.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.