函数原型
get_screen_icon(): string
函数描述
Retrieves the screen icon (no longer used in 3.8+).
是否弃用
Warning: This function has been deprecated.
函数参数
无
函数返回值
string An HTML comment explaining that icons are no longer used.
函数位置
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. -->';
}
源码链接
变更日志
| Version | Description |
|---|---|
| 3.8.0 | This function has been deprecated. |
| 3.2.0 | Introduced. |

