Adds accessible hidden headings and text for the screen.
Parameters
$content
arrayoptional- An associative array of screen reader text strings.
heading_views
stringScreen reader text for the filter links heading.
Default ‘Filter items list’.heading_pagination
stringScreen reader text for the pagination heading.
Default ‘Items list navigation’.heading_list
stringScreen reader text for the items list heading.
Default ‘Items list’.
Default:
array()
Source
public function set_screen_reader_content( $content = array() ) {
$defaults = array(
'heading_views' => __( 'Filter items list' ),
'heading_pagination' => __( 'Items list navigation' ),
'heading_list' => __( 'Items list' ),
);
$content = wp_parse_args( $content, $defaults );
$this->_screen_reader_content = $content;
}
Changelog
Version | Description |
---|---|
4.4.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.