WP_Screen::get_help_tab( string $id )

Gets the arguments for a help tab.


Description Description


Parameters Parameters

$id

(string) (Required) Help Tab ID.


Top ↑

Return Return

(array) Help tab arguments.


Top ↑

Source Source

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

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

Top ↑

Changelog Changelog

Changelog
Version Description
3.4.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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