WP_Screen::get_screen_reader_content() WordPress Method

The WP_Screen::get_screen_reader_content() method is used to get the content that should be read by a screen reader when the current screen is displayed. This can be useful for customizing the content that is read aloud to users who are blind or have low vision.

WP_Screen::get_screen_reader_content() #

Get the accessible hidden headings and text used in the screen.


Description

Top ↑

See also


Top ↑

Return

(array) An associative array of screen reader text strings.


Top ↑

Source

File: wp-admin/includes/class-wp-screen.php

	public function get_screen_reader_content() {
		return $this->_screen_reader_content;
	}

Top ↑

Changelog

Changelog
VersionDescription
4.4.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.