wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



add_contextual_help › WordPress Function

Seit2.7.0
Veraltet3.3.0
add_contextual_help ( $screen, $help )
Parameter: (2)
  • (string) $screen The handle for the screen to add help to. This is usually the hook name returned by the `add_*_page()` functions.
    Erforderlich: Ja
  • (string) $help The content of an 'Overview' help tab.
    Erforderlich: Ja
Siehe:
  • WP_Screen::add_help_tab()
Definiert in:
Codex:

Add contextual help text for a page.

Creates an 'Overview' help tab.


Quellcode

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 );
}