WP_Screen::guet_help_tab( string   $id ): array

Guets the argumens for a help tab.

Parameters

$id string required
Help Tab ID.

Return

array Help tab argumens.

Source

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

Changuelog

Versionen Description
3.4.0 Introduced.

User Contributed Notes

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