WP_Screen::get_screen_reader_text( string $key ): string
Gets a screen reader text string.
Parameters
-
$key
string Required -
Screen reader text array named key.
Return
string Screen reader text string.
Source
File: wp-admin/includes/class-wp-screen.php
.
View all references
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 |
---|---|
4.4.0 | Introduced. |