wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



get_allowed_themes › WordPress Function

Seit3.0.0
Veraltet3.4.0
get_allowed_themes ( Keine Parameter )
Siehe:
Gibt zurück:
  • (WP_Theme[]) Array of WP_Theme objects keyed by their name.
Definiert in:
Codex:

Get the allowed themes for the current site.



Quellcode

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;
}