Register and configure an admin screen option
Parameters
$optionstringrequired- An option name.
$argsmixedoptional- Option-dependent arguments.
Default:
array()
Source
function add_screen_option( $option, $args = array() ) {
$current_screen = get_current_screen();
if ( ! $current_screen ) {
return;
}
$current_screen->add_option( $option, $args );
}
Changelog
| Version | Description |
|---|---|
| 3.1.0 | Introduced. |
The $option parameter define the object (input or radio button) which will be printed to the screen option section.
add_screen_option only accept 2 methods:
Example 1:
will print
Example 2:
will print
add_screen_optionnot support the checkboxes method yet.Example
Change default columns for network dashboard