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();
}


Top ↑

Changelog

Changelog
VersionDescription
3.8.0This function has been deprecated.
2.7.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