Warning: This function has been deprecated.

get_screen_icon() WordPress Function

The get_screen_icon() function is used to display an icon for a specific screen. This icon is typically used to represent the current screen in a menu or navigation area.

get_screen_icon() #

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


Return

(string) An HTML comment explaining that icons are no longer used.


Top ↑

Source

File: wp-admin/includes/deprecated.php

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


Top ↑

Changelog

Changelog
VersionDescription
3.8.0This function has been deprecated.
3.2.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.

Show More