WP_Screen::get_help_tab()publicWP 3.4.0

Gets the arguments for a help tab.

Method of the class: WP_Screen{}

No Hooks.

Return

Array. Help tab arguments.

Usage

$WP_Screen = new WP_Screen();
$WP_Screen->get_help_tab( $id );
$id(string) (required)
Help Tab ID.

Changelog

Since 3.4.0 Introduced.

WP_Screen::get_help_tab() code WP 6.5.2

public function get_help_tab( $id ) {
	if ( ! isset( $this->_help_tabs[ $id ] ) ) {
		return null;
	}
	return $this->_help_tabs[ $id ];
}