Summery Summery
Gets the arguments for a help tab.
Syntax Syntax
Parameters Parameters
- $id
-
(Required) Help Tab ID.
Return Return
(array) Help tab arguments.
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 ]; }
Advertisement
Changelog Changelog
Version | Description |
---|---|
3.4.0 | Introduced. |