screen_icon()WP 2.7.0

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

Displays a screen icon.

No Hooks.

Returns

null. Nothing (null).

Usage

screen_icon();

Changelog

Since 2.7.0 Introduced.
Deprecated since 3.8.0

screen_icon() code WP 7.0

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