Summery Summery
Adds an option for the screen.
Syntax Syntax
Description Description
Call this in template files after admin.php is loaded and before admin-header.php is loaded to add screen options.
Parameters Parameters
- $option
-
(Required) Option ID
- $args
-
(Optional) Option-dependent arguments.
Default value: array()
Source Source
File: wp-admin/includes/class-wp-screen.php
public function add_option( $option, $args = array() ) { $this->_options[ $option ] = $args; }
Advertisement
Changelog Changelog
Version | Description |
---|---|
3.3.0 | Introduced. |