WP_Screen::get_help_tab() – Gets the arguments for a help tab.
You appear to be a bot. Output may be restricted
Description
Gets the arguments for a help tab.
Usage
$array = WP_Screen::get_help_tab( $id );
Parameters
- $id
- ( string ) required – Help Tab ID.
Returns
array Help tab arguments.
Source
File name: wordpress/wp-admin/includes/class-wp-screen.php
Lines:
1 to 6 of 6
public function get_help_tab( $id ) { if ( ! isset( $this->_help_tabs[ $id ] ) ) { return null; } return $this->_help_tabs[ $id ]; }