WordPress Version: 4.6
/**
* Retrieves information on the current active theme.
*
* @since 2.0.0
* @deprecated 3.4.0 Use wp_get_theme()
* @see wp_get_theme()
*
* @return WP_Theme
*/
function current_theme_info()
{
_deprecated_function(__FUNCTION__, '3.4.0', 'wp_get_theme()');
return wp_get_theme();
}