get_allowed_themes()WP 3.0.0

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

Get the allowed themes for the current site.

No Hooks.

Return

WP_Theme[]. Array of WP_Theme objects keyed by their name.

Usage

get_allowed_themes();

Notes

Changelog

Since 3.0.0 Introduced.
Deprecated since 3.4.0 Use wp_get_themes()

get_allowed_themes() code WP 6.4.3

function get_allowed_themes() {
	_deprecated_function( __FUNCTION__, '3.4.0', "wp_get_themes( array( 'allowed' => true ) )" );

	$themes = wp_get_themes( array( 'allowed' => true ) );

	$wp_themes = array();
	foreach ( $themes as $theme ) {
		$wp_themes[ $theme->get('Name') ] = $theme;
	}

	return $wp_themes;
}