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

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


Description Description


Parameters Parameters

$screen

(WP_Screen) (Required) A screen object.

$help

(string) (Required) Help text.


Top ↑

Source Source

File: wp-admin/includes/class-wp-screen.php

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

Top ↑

Changelog Changelog

Changelog
Version Description
3.3.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

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