WP_Screen::set_help_sidebar() – Add a sidebar to the contextual help for the screen.
You appear to be a bot. Output may be restricted
Description
Adds a sidebar to the contextual help for the screen.
Call this in template files after admin.php is loaded and before admin-header.php is loaded to add a sidebar to the contextual help.
Usage
WP_Screen::set_help_sidebar( $content );
Parameters
- $content
- ( string ) required – Sidebar content in plain text or HTML.
Returns
void
Source
File name: wordpress/wp-admin/includes/class-wp-screen.php
Lines:
1 to 3 of 3
public function set_help_sidebar( $content ) { $this->_help_sidebar = $content; }