WP_Screen::get_options()publicWP 3.8.0

Gets the options registered for the screen.

Method of the class: WP_Screen{}

No Hooks.

Return

Array. Options with arguments.

Usage

$WP_Screen = new WP_Screen();
$WP_Screen->get_options();

Changelog

Since 3.8.0 Introduced.

WP_Screen::get_options() code WP 6.5.2

public function get_options() {
	return $this->_options;
}