WP_Screen::get_options() WordPress Method
The WP_Screen::get_options() method is used to get the options for a particular screen. The options are stored in an associative array and can be retrieved by passing in the option name as a string.
WP_Screen::get_options() #
Get the options registered for the screen.
Return
(array) Options with arguments.
Source
File: wp-admin/includes/class-wp-screen.php
public function get_options() { return $this->_options; }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
3.8.0 | Introduced. |