current_theme_info()WP 2.0.0

Deprecated from version 3.4.0. It is no longer supported and can be removed in future releases. Use wp_get_theme() instead.

Retrieves information on the current active theme.

No Hooks.

Return

WP_Theme.

Usage

current_theme_info();

Notes

Changelog

Since 2.0.0 Introduced.
Deprecated since 3.4.0 Use wp_get_theme()

current_theme_info() code WP 6.5.2

function current_theme_info() {
	_deprecated_function( __FUNCTION__, '3.4.0', 'wp_get_theme()' );

	return wp_get_theme();
}