WP_Screen::remove_option( string $option )

Remove an option from the screen.


Description Description


Parameters Parameters

$option

(string) (Required) Option ID.


Top ↑

Source Source

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

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

Top ↑

Changelog Changelog

Changelog
Version Description
3.8.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.