WP_Screen::add_old_compat_help() – Sets the old string-based contextual help for the screen for backward compatibility.

You appear to be a bot. Output may be restricted

Description

Sets the old string-based contextual help for the screen for backward compatibility.

Usage

WP_Screen::add_old_compat_help( $screen, $help );

Parameters

$screen
( WP_Screen ) required – A screen object.
$help
( string ) required – Help text.

Returns

void

Source

File name: wordpress/wp-admin/includes/class-wp-screen.php
Lines:

1 to 3 of 3
  public static function add_old_compat_help( $screen, $help ) {
    self::$_old_compat_help[ $screen->id ] = $help;
  }
 

 View on GitHub View on Trac