On this page
WP_Screen::get_help_tab( string $id ): array
Gets the arguments for a help tab.
Parameters
$idstring Required-
Help Tab ID.
Return
array Help tab arguments.
Source
File: wp-admin/includes/class-wp-screen.php. View all references
public function get_help_tab( $id ) {
if ( ! isset( $this->_help_tabs[ $id ] ) ) {
return null;
}
return $this->_help_tabs[ $id ];
}
Changelog
| Version | Description |
|---|---|
| 3.4.0 | Introduced. |
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_screen/get_help_tab