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.
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. -->'; }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
3.8.0 | This function has been deprecated. |
3.2.0 | Introduced. |