WP_Screen::add_option( string $option, mixed $args = array() )
Adds an option for the screen.
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
-
(string) (Required) Option ID
- $args
-
(mixed) (Optional) Option-dependent arguments.
Default value: array()
Source Source
File: wp-admin/includes/class-wp-screen.php
474 475 476 | public function add_option( $option , $args = array () ) { $this ->_options[ $option ] = $args ; } |
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
3.3.0 | Introduced. |