screen_icon()WP 2.7.0

Deprecated from version 3.8.0. It is no longer supported and can be removed in future releases. It is recommended to replace this function with the same one.

Displays a screen icon.

No Hooks.

Return

null. Nothing (null).

Usage

screen_icon();

Changelog

Since 2.7.0 Introduced.
Deprecated since 3.8.0

screen_icon() code WP 6.5.2

function screen_icon() {
	_deprecated_function( __FUNCTION__, '3.8.0' );
	echo get_screen_icon();
}