WP_Screen::remove_help_tab()publicWP 3.3.0

Removes a help tab from the contextual help for the screen.

Method of the class: WP_Screen{}

No Hooks.

Return

null. Nothing (null).

Usage

$WP_Screen = new WP_Screen();
$WP_Screen->remove_help_tab( $id );
$id(string) (required)
The help tab ID.

Changelog

Since 3.3.0 Introduced.

WP_Screen::remove_help_tab() code WP 6.5.2

public function remove_help_tab( $id ) {
	unset( $this->_help_tabs[ $id ] );
}