WP_Screen::add_option( string $option, mixed $args = array() )

Adds an option for the screen.


Description

Call this in template files after admin.php is loaded and before admin-header.php is loaded to add screen options.


Parameters

$option

(string) (Required) Option ID

$args

(mixed) (Optional) Option-dependent arguments.

Default value: array()


Source

File: wp-admin/includes/class-wp-screen.php

	public function add_option( $option, $args = array() ) {
		$this->_options[ $option ] = $args;
	}


Changelog

Changelog
Version Description
WP-3.3.0 Introduced.