WP_Screen::remove_option

Advertisement

Summery Summery

Remove an option from the screen.

Syntax Syntax

WP_Screen::remove_option( string $option )

Parameters Parameters

$option

(Required) Option ID.

Source Source

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

	public function remove_option( $option ) {
		unset( $this->_options[ $option ] );
	}

Advertisement

Changelog Changelog

Changelog
Version Description
3.8.0 Introduced.

Advertisement

Leave a Reply