How to include deprecated functions in older versions of WordPress but not in newer ones.
<?php /* screen_icon was deprecated in 3.8 */ if ( version_compare( $GLOBALS['wp_version'], '3.8', '<' ) ) { screen_icon(); }