WP_Screen::get_screen_reader_text( string $key )
Get a screen reader text string.
Parameters
- $key
-
(Required) Screen reader text array named key.
Return
(string) Screen reader text string.
Source
File: wp-admin/includes/class-wp-screen.php
public function get_screen_reader_text( $key ) {
if ( ! isset( $this->_screen_reader_content[ $key ] ) ) {
return null;
}
return $this->_screen_reader_content[ $key ];
}
Changelog
Version | Description |
---|---|
WP-4.4.0 | Introduced. |