Warning: This function has been deprecated.
screen_icon() WordPress Function
The screen_icon() function allows you to display an icon in the WordPress admin screens. This can be useful for plugin and theme developers to indicate their plugin or theme is active.
screen_icon() #
Displays a screen icon.
Source
File: wp-admin/includes/deprecated.php
function screen_icon() { _deprecated_function( __FUNCTION__, '3.8.0' ); echo get_screen_icon(); }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
3.8.0 | This function has been deprecated. |
2.7.0 | Introduced. |