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



get_theme › WordPress Function

Seit1.5.0
Veraltet3.4.0
get_theme ( $theme )
Parameter:
  • (string) $theme Theme name.
    Erforderlich: Ja
Siehe:
Gibt zurück:
  • (array|null) Null, if theme name does not exist. Theme data, if exists.
Definiert in:
Codex:

Retrieve theme data.



Quellcode

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