티스토리 수익 글 보기
add_contextual_help( string $screen, string $help )
This function has been deprecated. Use WP_Screen::add_help_tab() instead.
Add contextual help text for a page.
Description
Creates an ‘Overview’ help tab.
See also
Parameters
$screenstringrequired- The handle for the screen to add help to. This is usually the hook name returned by the
add_*_page()functions. $helpstringrequired- The content of an
'Overview'help tab.
Source
function add_contextual_help( $screen, $help ) {
_deprecated_function( __FUNCTION__, '3.3.0', 'get_current_screen()->add_help_tab()' );
if ( is_string( $screen ) )
$screen = convert_to_screen( $screen );
WP_Screen::add_old_compat_help( $screen, $help );
}
Changelog
| Version | Description |
|---|---|
| 3.3.0 | Use WP_Screen::add_help_tab() |
| 2.7.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.
As recommended that
is deprecated and suggested to use this
Here is the usage
Visit Here for detail description