WP_Screen::remove_option() – Remove an option from the screen.

You appear to be a bot. Output may be restricted

Description

Removes an option from the screen.

Usage

WP_Screen::remove_option( $option );

Parameters

$option
( string ) required – Option ID.

Returns

void

Source

File name: wordpress/wp-admin/includes/class-wp-screen.php
Lines:

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

 View on GitHub View on Trac