get_screen_icon()
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.
Retrieves the screen icon (no longer used in 3.8+).
No Hooks.
Returns
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() get screen icon code WP 6.9
function get_screen_icon() {
_deprecated_function( __FUNCTION__, '3.8.0' );
return '<!-- Screen icons are no longer used as of WordPress 3.8. -->';
}