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

In this article

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

Parameters

$screenWP_Screenrequired
A screen object.
$helpstringrequired
Help text.

Source

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

Changelog

VersionDescription
3.3.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.