get_theme( string $theme ): array|null

This function has been deprecated. Use wp_get_theme() instead.

Retrieve theme data.

Description

See also

Parameters

$themestringrequired
Theme name.

Return

array|null Null, if theme name does not exist. Theme data, if exists.

Source

function get_theme( $theme ) {
	_deprecated_function( __FUNCTION__, '3.4.0', 'wp_get_theme( $stylesheet )' );

	$themes = get_themes();
	if ( is_array( $themes ) && array_key_exists( $theme, $themes ) )
		return $themes[ $theme ];
	return null;
}

Changelog

VersionDescription
3.4.0Use wp_get_theme()
1.5.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.