get_screen_icon()WP 3.2.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.

Retrieves the screen icon (no longer used in 3.8+).

No Hooks.

Return

String. An HTML comment explaining that icons are no longer used.

Usage

get_screen_icon();

Changelog

Since 3.2.0 Introduced.
Deprecated since 3.8.0

get_screen_icon() code WP 6.6.2

function get_screen_icon() {
	_deprecated_function( __FUNCTION__, '3.8.0' );
	return '<!-- Screen icons are no longer used as of WordPress 3.8. -->';
}